mirror of
https://github.com/saltstack/salt.git
synced 2025-04-10 14:51:40 +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
271 B
271 B
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.