Fix ip/port issue with salt-call (#37766)

Closes #37725
This commit is contained in:
Mike Place 2016-11-21 16:41:27 +00:00 committed by Nicole Thomas
parent c62ff6b023
commit d674369efc

View file

@ -513,6 +513,7 @@ class MinionBase(object):
# we need a list of master URIs to fire calls back to.
for master in opts['local_masters']:
opts['master'] = master
opts.update(prep_ip_port(opts))
opts['master_uri_list'].append(resolve_dns(opts)['master_uri'])
while True: