mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix naming issue in _handle_aes on the master
This commit is contained in:
parent
07cb8ec97b
commit
690093813b
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ class ReqServer(threading.Thread):
|
|||
Handle a command sent via an aes key
|
||||
'''
|
||||
data = self.crypticle.loads(load)
|
||||
return getattr(self, load['cmd'])(load)
|
||||
return getattr(self, data['cmd'])(data)
|
||||
|
||||
def _auth(self, load):
|
||||
'''
|
||||
|
|
Loading…
Add table
Reference in a new issue