mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
Dispatch sends again
This commit is contained in:
parent
18cb75b0ac
commit
7ac699bc77
|
|
@ -89,7 +89,7 @@ func (oqs *OutgoingQueues) SendEvent(
|
||||||
oqs.queuesMutex.Unlock()
|
oqs.queuesMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
oq.sendEvent(ev)
|
go oq.sendEvent(ev)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
@ -138,7 +138,7 @@ func (oqs *OutgoingQueues) SendInvite(
|
||||||
oqs.queuesMutex.Unlock()
|
oqs.queuesMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
oq.sendInvite(inviteReq)
|
go oq.sendInvite(inviteReq)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
@ -182,7 +182,7 @@ func (oqs *OutgoingQueues) SendEDU(
|
||||||
oqs.queuesMutex.Unlock()
|
oqs.queuesMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
oq.sendEDU(e)
|
go oq.sendEDU(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue