mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't deep copy context dict values.
This commit is contained in:
parent
06f249901a
commit
8e34d0a9c3
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class ChildContextDict(collections.MutableMapping):
|
|||
# merge self.global_data into self._data
|
||||
for k, v in self.parent.global_data.iteritems():
|
||||
if k not in self._data:
|
||||
self._data[k] = copy.deepcopy(v)
|
||||
self._data[k] = v
|
||||
|
||||
def __setitem__(self, key, val):
|
||||
self._data[key] = val
|
||||
|
|
Loading…
Add table
Reference in a new issue