mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixed the aes key loaded for encryption on the master
This commit is contained in:
parent
e03bb7b29a
commit
b85075d94a
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class ReqServer(threading.Thread):
|
|||
self.publisher.start()
|
||||
# Prepare the aes key
|
||||
self.key = self.__prep_key()
|
||||
self.crypticle = salt.crypt.Crypticle(self.key)
|
||||
self.crypticle = salt.crypt.Crypticle(self.opts['aes'])
|
||||
|
||||
def __prep_key(self):
|
||||
'''
|
||||
|
|
Loading…
Add table
Reference in a new issue