mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Merge pull request #26170 from nmadhok/backport-cloud-fix-26163-2015.8
[Backport] Make sure variable is a dictionary before popping something from it.
This commit is contained in:
commit
151acabdca
@ -2218,7 +2218,7 @@ def create_multiprocessing(parallel_data, queue=None):
|
||||
)
|
||||
return {parallel_data['name']: {'Error': str(exc)}}
|
||||
|
||||
if parallel_data['opts'].get('show_deploy_args', False) is False:
|
||||
if parallel_data['opts'].get('show_deploy_args', False) is False and isinstance(output, dict):
|
||||
output.pop('deploy_kwargs', None)
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user