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
I am using channels_redis as backend to GraphQL subscriptions.
Upon subscription I subscribe a user to a number of groups, which works as expected. But if in the meantime I change the subscription parameters and call group_add with a different set of groups, the groups that exist on both "previous subscription parameters" and "next subscription parameters" get deleted from channels.
Example:
Initial subscription parameters:
- Group_A
- Group_B
- Group_C
Final result:
- Channels successfully subscribes to all 3 groups
Next subscription parameters:
- Group_A
- Group_D
Final result:
- Channels subscribes only to Group_D
Is there any config to change this behaviour? Is it a bug? Did anyone experienced it?
Thanks for this awesome project.
The text was updated successfully, but these errors were encountered:
I am using channels_redis as backend to GraphQL subscriptions.
Upon subscription I subscribe a user to a number of groups, which works as expected. But if in the meantime I change the subscription parameters and call group_add with a different set of groups, the groups that exist on both "previous subscription parameters" and "next subscription parameters" get deleted from channels.
Is there any config to change this behaviour? Is it a bug? Did anyone experienced it?
Thanks for this awesome project.
The text was updated successfully, but these errors were encountered: