Don't crash on audit and repair failures (#1622)
* Fix satellite crash on repair (cherry picked from commit cabf6c9f97780f900d76e2388ffa54b916f14528) * Fix satellite crash on audit (cherry picked from commit 9da67488c4b36a378f346fbb27651316284b0f36)
This commit is contained in:
parent
c50a21d4cf
commit
43ef0eb4c3
@ -61,7 +61,7 @@ func (service *Service) Run(ctx context.Context) (err error) {
|
||||
if err != nil {
|
||||
service.log.Error("process", zap.Error(err))
|
||||
}
|
||||
return err
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -66,7 +66,7 @@ func (checker *Checker) Run(ctx context.Context) (err error) {
|
||||
if err != nil {
|
||||
checker.logger.Error("error with injured segments identification: ", zap.Error(err))
|
||||
}
|
||||
return err
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user