mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00

A pillars dict in a minion node definition was not overridding correctly the same dict in classes. * salt/utils/saltclass.py (expanded_dict_from_minion): do not pass a reference to minion dict or it will be overridden by classes during expansion. Fixes: #63933
4 lines
271 B
Markdown
4 lines
271 B
Markdown
Issue 63933: Fixes an issue with `saltclass.expanded_dict_from_minion`
|
|
function where it was passing a reference to minion `dict` which was
|
|
overridden by nested classes during class expansion. Copy the node
|
|
definition with `copy.deepcopy` instead of passing a reference.
|