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:
littleskunk 2019-04-01 11:16:17 +02:00 committed by GitHub
parent c50a21d4cf
commit 43ef0eb4c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
})
}

View File

@ -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
})
}