Don't give up if we fail to fetch a key (#1483)

* Don't give up if we fail to fetch a key

* Fix logging line

* furl nolint
This commit is contained in:
Neil Alexander 2020-10-06 17:59:08 +01:00 committed by GitHub
parent ee79d662e7
commit 4feff8e8d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 5 deletions

View file

@ -195,7 +195,7 @@ func (r *Backfiller) fetchAndStoreMissingEvents(ctx context.Context, roomVer gom
logger.Infof("returned %d PDUs which made events %+v", len(res.PDUs), result)
for _, res := range result {
if res.Error != nil {
logger.WithError(err).Warn("event failed PDU checks")
logger.WithError(res.Error).Warn("event failed PDU checks")
continue
}
missingMap[id] = res.Event