From 40c89776c5cc2d5185f97cbda091409bc369aff9 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Mon, 1 Jun 2020 16:43:04 +0100 Subject: [PATCH] Linting --- federationsender/queue/queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federationsender/queue/queue.go b/federationsender/queue/queue.go index 0abafbcad..386a3397f 100644 --- a/federationsender/queue/queue.go +++ b/federationsender/queue/queue.go @@ -72,7 +72,7 @@ func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *d incomingPDUs: make(chan *gomatrixserverlib.HeaderedEvent, 128), incomingEDUs: make(chan *gomatrixserverlib.EDU, 128), incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128), - retryServerCh: make(chan bool, 0), + retryServerCh: make(chan bool), } oqs.queues[destination] = oq }