1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00

don't double encode channel messages

This commit is contained in:
Wayne Witzel III 2016-10-20 09:37:06 -04:00
parent 532ee059ea
commit af82273948

View File

@ -35,5 +35,4 @@ def ws_receive(message):
def emit_channel_notification(group, payload):
payload = json.dumps(payload)
Group(group).send({"text": json.dumps(payload)})