1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00

confidence in websocket group logic is high

* Replying to websocket group membership with the previous state, delta,
and new state has shown to be quite stable. This debug message is not
very helpful and is noisy in the dev env. This change removes the debug
message.
This commit is contained in:
chris meyers 2020-04-16 08:48:12 -04:00
parent a989c624c7
commit d30ecb6fb3

View File

@ -189,7 +189,6 @@ class EventConsumer(AsyncJsonWebsocketConsumer):
group_name, group_name,
self.channel_name self.channel_name
) )
logger.debug(f"Channel {self.channel_name} left groups {old_groups} and joined {new_groups_exclusive}")
self.scope['session']['groups'] = new_groups self.scope['session']['groups'] = new_groups
await self.send_json({ await self.send_json({
"groups_current": list(new_groups), "groups_current": list(new_groups),