mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-27 07:28:27 +00:00
device lists: backoff for longer if the wrong error type is returned (#1796)
This commit is contained in:
parent
e865a1507a
commit
77fb981da5
1 changed files with 3 additions and 0 deletions
|
@ -347,6 +347,9 @@ func (u *DeviceListUpdater) processServer(serverName gomatrixserverlib.ServerNam
|
||||||
} else if fcerr.Blacklisted {
|
} else if fcerr.Blacklisted {
|
||||||
waitTime = time.Hour * 8
|
waitTime = time.Hour * 8
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
waitTime = time.Hour
|
||||||
|
logger.WithError(err).Warn("GetUserDevices returned unknown error type")
|
||||||
}
|
}
|
||||||
hasFailures = true
|
hasFailures = true
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue