Don't fsync on V2 registry push tempfile creation

Signed-off-by: Burke Libbey <burke.libbey@shopify.com>
This commit is contained in:
Burke Libbey 2015-05-07 14:42:17 -04:00
parent 236dbc2e59
commit ec66daebc2
No known key found for this signature in database
GPG Key ID: E893DEF914F22410
1 changed files with 0 additions and 3 deletions

View File

@ -254,9 +254,6 @@ func bufferToFile(f *os.File, src io.Reader) (int64, digest.Digest, error) {
if err != nil {
return 0, "", err
}
if err = f.Sync(); err != nil {
return 0, "", err
}
n, err := f.Seek(0, os.SEEK_CUR)
if err != nil {
return 0, "", err