2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 11:01:09 +00:00

Correct keyname from previous fix

This commit is contained in:
Jarrod Johnson 2023-06-23 17:01:50 -04:00
parent 77c8e93a8d
commit 4056264991

View File

@ -488,7 +488,7 @@ def wsock_handler(ws):
msg = json.loads(clientmsg[1:])
action = msg.get('operation', None)
if not action:
action = msg.get('start', None)
action = msg.get('action', None)
targ = msg.get('target', None)
if targ:
authdata = auth.authorize(name, targ, operation=action)