You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you call await get_channel_layer().receive() on a newly-instantiated channel layer, it won't connect to RabbitMQ. The connect only happens on send() or group_add().
To fix, make receive() await the connection. (Ignore failed connections?)
The text was updated successfully, but these errors were encountered:
If you call
await get_channel_layer().receive()
on a newly-instantiated channel layer, it won't connect to RabbitMQ. The connect only happens onsend()
orgroup_add()
.To fix, make
receive()
await the connection. (Ignore failed connections?)The text was updated successfully, but these errors were encountered: