diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-04-05 01:29:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 01:29:51 +0800 |
commit | bae1d6ccd81cd427382a2456e7c3646bdac9cf46 (patch) | |
tree | 0949a9b48aa83eef0ec214ff6b4f981d19fc113d /internal/db | |
parent | 3a5c93eeff470dda5dc4f729a1d3eef3bcb8622b (diff) |
lfs: only remove file on io error (#6062)
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/lfs.go | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/internal/db/lfs.go b/internal/db/lfs.go index 3868a20c..8ae9e718 100644 --- a/internal/db/lfs.go +++ b/internal/db/lfs.go @@ -48,33 +48,38 @@ type LFSObject struct { CreatedAt time.Time `gorm:"NOT NULL"` } -func (db *lfs) CreateObject(repoID int64, oid lfsutil.OID, rc io.ReadCloser, storage lfsutil.Storage) (err error) { +func (db *lfs) CreateObject(repoID int64, oid lfsutil.OID, rc io.ReadCloser, storage lfsutil.Storage) error { if storage != lfsutil.StorageLocal { return errors.New("only local storage is supported") } + var ioerr error fpath := lfsutil.StorageLocalPath(conf.LFS.ObjectsPath, oid) defer func() { rc.Close() - if err != nil { + // NOTE: Only remove the file if there is an IO error, it is OK to + // leave the file when the whole operation failed with a DB error, + // a retry on client side can safely overwrite the same file as OID + // is seen as unique to every file. + if ioerr != nil { _ = os.Remove(fpath) } }() - err = os.MkdirAll(filepath.Dir(fpath), os.ModePerm) - if err != nil { - return errors.Wrap(err, "create directories") + ioerr = os.MkdirAll(filepath.Dir(fpath), os.ModePerm) + if ioerr != nil { + return errors.Wrap(ioerr, "create directories") } - w, err := os.Create(fpath) - if err != nil { - return errors.Wrap(err, "create file") + w, ioerr := os.Create(fpath) + if ioerr != nil { + return errors.Wrap(ioerr, "create file") } defer w.Close() - written, err := io.Copy(w, rc) - if err != nil { - return errors.Wrap(err, "copy file") + written, ioerr := io.Copy(w, rc) + if ioerr != nil { + return errors.Wrap(ioerr, "copy file") } object := &LFSObject{ |