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

Fix support for newer XCC firmware

Newer XCC firmware requires more parameters for usermodify
This commit is contained in:
Jarrod Johnson 2021-08-27 18:29:38 -04:00
parent d69de62077
commit 3d4462d788

View File

@ -340,6 +340,10 @@ class NodeHandler(immhandler.NodeHandler):
rsp, status = wc.grab_json_response_with_status(
'/api/function',
{'USER_UserModify': '{0},{1},,1,Administrator,0,0,0,0,,8,'.format(uid, username)})
elif status == 200 and rsp.get('return', 0) == 13:
rsp, status = wc.grab_json_response_with_status(
'/api/function',
{'USER_UserModify': '{0},{1},,1,4,0,0,0,0,,8,,,'.format(uid, username)})
self.tmppasswd = None
self._currcreds = (username, passwd)