Open
Description
ASGI Channels for the same RedisChannelLayer
instance (
channels_redis/channels_redis/core.py
Line 239 in 54d935b
The ASGI channels capacity is check against the internal redis queue length, not the asgi channel.
Related to #95.
It is not only an issue if we have different rules per channel, but also and primarily an issue if we have many asgi channels for one RedisChannelLayer
instance: some asgi channels may get ChannelFull
because of other asgi channels being non-empty.
I'm not sure what to do to fix this, but it could at least be documented in the README (https://github.com/django/channels_redis#channel_capacity).