Skip to content

Commit

Permalink
fix missing object condition; short-circuit walk
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Jul 26, 2021
1 parent 0fd8fc2 commit 18caefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockstore/splitstore/splitstore_warmup.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (s *SplitStore) doWarmup(curTs *types.TipSet) error {
if err != nil {
if err == bstore.ErrNotFound {
missing++
return nil
return errStopWalk
}
return err
}
Expand Down

0 comments on commit 18caefc

Please sign in to comment.