Fix default request channel timeout regression

This commit is contained in:
Daniel A. Wozniak 2024-02-14 00:55:36 -07:00 committed by Daniel Wozniak
parent 9a04397c11
commit 332533b1c9
2 changed files with 3 additions and 1 deletions

2
changelog/66061.fixed.md Normal file
View 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.

View file

@ -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,