Merge pull request #8404 from simlecode/fix/not_check_error

fix: sealing: Added error checking
This commit is contained in:
Łukasz Magiera 2022-03-29 22:57:35 -04:00 committed by GitHub
commit 39c38c44a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -693,6 +693,10 @@ func (m *Manager) FinalizeReplicaUpdate(ctx context.Context, sector storage.Sect
err = multierr.Append(err, move(moveUnsealed))
}
if err != nil {
return xerrors.Errorf("moving sector to storage: %w", err)
}
return nil
}