mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
ports shoud be strings for zmq use
This commit is contained in:
parent
fbea1cdd96
commit
565a2b4a21
1 changed files with 5 additions and 5 deletions
|
@ -35,13 +35,13 @@ def master_config(path):
|
|||
Reads in the master configuration file and sets up default options
|
||||
'''
|
||||
opts = {'interface': '0.0.0.0',
|
||||
'publish_port': 7777,
|
||||
'publish_port': '7777',
|
||||
'worker_threads': 5,
|
||||
'worker_port': 7778,
|
||||
'ret_port': 7776,
|
||||
'worker_port': '7778',
|
||||
'ret_port': '7776',
|
||||
'local_threads': 5,
|
||||
'local_port': 7775,
|
||||
'local_worker_port': 7774,
|
||||
'local_port': '7775',
|
||||
'local_worker_port': '7774',
|
||||
'cachedir': '/var/cache/salt'}
|
||||
|
||||
if os.path.isfile(path):
|
||||
|
|
Loading…
Add table
Reference in a new issue