mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
single item list vs. list of characters
This commit is contained in:
parent
daa76c34e4
commit
18ceebc77f
1 changed files with 1 additions and 1 deletions
|
@ -802,7 +802,7 @@ class Minion(MinionBase):
|
|||
elif isinstance(opts['master'], str) and ('master_list' not in opts):
|
||||
# We have a string, but a list was what was intended. Convert.
|
||||
# See issue 23611 for details
|
||||
opts['master'] = list(opts['master'])
|
||||
opts['master'] = [opts['master']]
|
||||
elif opts['__role'] == 'syndic':
|
||||
log.info('Syndic setting master_syndic to \'{0}\''.format(opts['master']))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue