0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-26 08:18:21 +02:00

Demote logging entry for backoff

This commit is contained in:
Neil Alexander 2022-02-08 16:49:49 +00:00
parent bb39149ff8
commit a84f50f4fb
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -297,7 +297,7 @@ func (oq *destinationQueue) backgroundSend() {
// We haven't backed off yet, so wait for the suggested amount of
// time.
duration := time.Until(*until)
logrus.Warnf("Backing off %q for %s", oq.destination, duration)
logrus.Debugf("Backing off %q for %s", oq.destination, duration)
oq.backingOff.Store(true)
destinationQueueBackingOff.Inc()
select {