quiet linter

This commit is contained in:
vyzo 2021-07-21 13:24:53 +03:00
parent 0c68bccbda
commit 92b9d8c895

View File

@ -142,13 +142,13 @@ func copyHotstoreToColdstore(lr repo.LockedRepo) error {
_, err := hot.Backup(bwr, 0)
if err != nil {
wr.CloseWithError(err)
_ = wr.CloseWithError(err)
return err
}
err = bwr.Flush()
if err != nil {
wr.CloseWithError(err)
_ = wr.CloseWithError(err)
return err
}