channels_rabbitmq icon indicating copy to clipboard operation
channels_rabbitmq copied to clipboard

A Django Channels channel layer that uses RabbitMQ as its backing store

Results 5 channels_rabbitmq issues
Sort by recently updated
recently updated
newest added

I don't really understand what is causing the issue. I have my configuration setup like so: ``` # Channels Config CHANNEL_LAYERS = { "default": { "BACKEND": "channels_rabbitmq.core.RabbitmqChannelLayer", "CONFIG": { "host":...

question

Hi! I use Django 4.2.3, Channels 4.0.0 and strawberry-graphql-django 0.10.6. Python version is 3.11.4 channel_layer is channels_rabbitmq.core.RabbitmqChannelLayer I use subscription, and I got an error message sometimes for channel_layer.group_send: ```...

question

Hi @adamhooper 👋 We're about to release the first version of the Redis PubSub layer. I'm **hoping** that'll work out well, and it will become the default recommendation. But then,...

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....

We have an HA RabbitMQ cluster, where we testing the HA functionality. Our application structure is like following: - Several consumers, which consume messages from a defined exchange (we have...