fix salt subset in orchestrator

This commit is contained in:
Daniel Wallace 2018-03-09 10:55:27 -07:00
parent 7db251dc11
commit 3112359dd6
No known key found for this signature in database
GPG Key ID: 5FA5E5544F010D48

View File

@ -1273,7 +1273,7 @@ def _exec(client, tgt, fun, arg, timeout, tgt_type, ret, kwarg, **kwargs):
_cmd = client.cmd_subset
cmd_kwargs = {
'tgt': tgt, 'fun': fun, 'arg': arg, 'tgt_type': tgt_type,
'ret': ret, 'kwarg': kwarg, 'sub': kwargs['subset'],
'ret': ret, 'cli': True, 'kwarg': kwarg, 'sub': kwargs['subset'],
}
del kwargs['subset']
else: