Fixed the aes key loaded for encryption on the master

This commit is contained in:
Thomas S Hatch 2011-03-08 23:16:50 -07:00
parent e03bb7b29a
commit b85075d94a

View file

@ -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):
'''