We don't really need Ch here do we

This commit is contained in:
Neil Alexander 2020-07-03 16:24:46 +01:00
parent 82d11484bc
commit 8bc9de2fe0
2 changed files with 14 additions and 14 deletions

View file

@ -56,7 +56,7 @@ type destinationQueue struct {
pendingEDUs []*gomatrixserverlib.EDU // owned by backgroundSend
pendingInvites []*gomatrixserverlib.InviteV2Request // owned by backgroundSend
notifyPDUs chan bool // interrupts idle wait for PDUs
interruptBackoffCh chan bool // interrupts backoff
interruptBackoff chan bool // interrupts backoff
}
// Send event adds the event to the pending queue for the destination.
@ -133,7 +133,7 @@ func (oq *destinationQueue) sendInvite(ev *gomatrixserverlib.InviteV2Request) {
func (oq *destinationQueue) wakeQueueIfNeeded() {
// If we are backing off then interrupt the backoff.
if oq.backingOff.CAS(true, false) {
oq.interruptBackoffCh <- true
oq.interruptBackoff <- true
}
// If we aren't running then wake up the queue.
if !oq.running.Load() {
@ -217,7 +217,7 @@ func (oq *destinationQueue) backgroundSend() {
oq.backingOff.Store(true)
select {
case <-time.After(duration):
case <-oq.interruptBackoffCh:
case <-oq.interruptBackoff:
}
oq.backingOff.Store(false)
}

View file

@ -94,7 +94,7 @@ func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *d
incomingEDUs: make(chan *gomatrixserverlib.EDU, 128),
incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128),
notifyPDUs: make(chan bool, 128),
interruptBackoffCh: make(chan bool),
interruptBackoff: make(chan bool),
signing: oqs.signing,
}
oqs.queues[destination] = oq