salt/changelog/61092.fixed
Alexander Graul 2c03915529 state.orchestrate_single does not pass pillar=None
Passing a pillar to state.single can results in state functions not
working when they don't accept a pillar keyword argument. One example
where this is the case is salt.wait_for_event. When no pillar is
provided, it does not need to be passed.
2022-10-07 07:32:30 -06:00

3 lines
174 B
Text

state.orchestrate_single only passes a pillar if it is set to the state
function. This allows it to be used with state functions that don't accept a
pillar keyword argument.