mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
fixes saltstack/salt#64122 state_queue type checking does not allow int values
This commit is contained in:
parent
9a6ab55c3b
commit
8f0f4f1d3b
2 changed files with 2 additions and 1 deletions
1
changelog/64122.fixed.md
Normal file
1
changelog/64122.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Fix state_queue type checking to allow int values
|
|
@ -373,7 +373,7 @@ VALID_OPTS = immutabletypes.freeze(
|
|||
# applications that depend on the original format.
|
||||
"unique_jid": bool,
|
||||
# Governs whether state runs will queue or fail to run when a state is already running
|
||||
"state_queue": bool,
|
||||
"state_queue": (bool, int),
|
||||
# Tells the highstate outputter to show successful states. False will omit successes.
|
||||
"state_verbose": bool,
|
||||
# Specify the format for state outputs. See highstate outputter for additional details.
|
||||
|
|
Loading…
Add table
Reference in a new issue