mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-16 03:13:11 -06:00
Don't print Sending EDU if there is noone to send to
This commit is contained in:
parent
a0dec456c1
commit
b37de99e5f
|
|
@ -96,9 +96,11 @@ func (oqs *OutgoingQueues) SendEDU(
|
||||||
// Remove our own server from the list of destinations.
|
// Remove our own server from the list of destinations.
|
||||||
destinations = filterDestinations(oqs.origin, destinations)
|
destinations = filterDestinations(oqs.origin, destinations)
|
||||||
|
|
||||||
log.WithFields(log.Fields{
|
if len(destinations) > 0 {
|
||||||
"destinations": destinations, "edu_type": e.Type,
|
log.WithFields(log.Fields{
|
||||||
}).Info("Sending EDU event")
|
"destinations": destinations, "edu_type": e.Type,
|
||||||
|
}).Info("Sending EDU event")
|
||||||
|
}
|
||||||
|
|
||||||
oqs.queuesMutex.Lock()
|
oqs.queuesMutex.Lock()
|
||||||
defer oqs.queuesMutex.Unlock()
|
defer oqs.queuesMutex.Unlock()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue