mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
Merge pull request #4076 from torhve/develop
Use a default for multiprocessing if not set. This fixes #4075
This commit is contained in:
commit
dc2f0f3c19
@ -188,7 +188,7 @@ def daemonize_if(opts, **kwargs):
|
||||
'''
|
||||
if 'salt-call' in sys.argv[0]:
|
||||
return
|
||||
if not opts['multiprocessing']:
|
||||
if not opts.get('multiprocessing', True):
|
||||
return
|
||||
if sys.platform.startswith('win'):
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user