mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Tied master packageing intot he payload module
This commit is contained in:
parent
d33d0d091e
commit
077386b3c4
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ import threading
|
|||
import zmq
|
||||
# Import salt modules
|
||||
import salt.utils
|
||||
import salt.payload
|
||||
|
||||
class Master(object):
|
||||
'''
|
||||
|
@ -95,7 +96,7 @@ class ReqServer(threading.Thread):
|
|||
|
||||
while True:
|
||||
message = socket.recv()
|
||||
salt.utils.pickle_message(message)
|
||||
salt.payload.package(message)
|
||||
socket.send(1)
|
||||
|
||||
def __bind(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue