Don't modify the original task ds when preprocessing data
In the case of using YAML anchors/aliases, YAML actually uses references to the duplicated object so any modifications to the original impacts later uses of the object. Fixes #13575pull/4420/head
parent
394430a61e
commit
af249b83e6
|
@ -196,7 +196,7 @@ class Task(Base, Conditional, Taggable, Become):
|
|||
if 'vars' in ds:
|
||||
# _load_vars is defined in Base, and is used to load a dictionary
|
||||
# or list of dictionaries in a standard way
|
||||
new_ds['vars'] = self._load_vars(None, ds.pop('vars'))
|
||||
new_ds['vars'] = self._load_vars(None, ds.get('vars'))
|
||||
else:
|
||||
new_ds['vars'] = dict()
|
||||
|
||||
|
|
Loading…
Reference in New Issue