Skip to content

Commit

Permalink
Merge pull request #8404 from simlecode/fix/not_check_error
Browse files Browse the repository at this point in the history
fix: sealing: Added error checking
  • Loading branch information
magik6k authored Mar 30, 2022
2 parents 7eb7edb + f094403 commit 39c38c4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extern/sector-storage/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 39c38c4

Please sign in to comment.