mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix default request channel timeout regression
This commit is contained in:
parent
9a04397c11
commit
332533b1c9
2 changed files with 3 additions and 1 deletions
2
changelog/66061.fixed.md
Normal file
2
changelog/66061.fixed.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
Fix request channel default timeout regression. In 3006.5 it was changed from
|
||||
60 to 30 and is now set back to 60 by default.
|
|
@ -1057,7 +1057,7 @@ DEFAULT_MINION_OPTS = immutabletypes.freeze(
|
|||
"pillar_cache": False,
|
||||
"pillar_cache_ttl": 3600,
|
||||
"pillar_cache_backend": "disk",
|
||||
"request_channel_timeout": 30,
|
||||
"request_channel_timeout": 60,
|
||||
"request_channel_tries": 3,
|
||||
"gpg_cache": False,
|
||||
"gpg_cache_ttl": 86400,
|
||||
|
|
Loading…
Add table
Reference in a new issue