[auh][PATCH] modules/state: default to 30 days for rapid fire updates
Alexander Kanavin <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
I feel that 7 days is too short. Signed-off-by: Alexander Kanavin <[email protected]> --- modules/state.py | 2 +- upgrade-helper.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/state.py b/modules/state.py index 0c2c7bb..d70972b 100644 --- a/modules/state.py +++ b/modules/state.py @@ -36,7 +36,7 @@ STATE_VERSION = 1 SECONDS_PER_DAY = 86400 DEFAULT_RETRY_SAME_VERSION_DAYS = 30 -DEFAULT_RETRY_ANY_VERSION_DAYS = 7 +DEFAULT_RETRY_ANY_VERSION_DAYS = 30 DEFAULT_SUCCESS_MAX_AGE_DAYS = 30 diff --git a/upgrade-helper.conf b/upgrade-helper.conf index 53c3c46..bd4dace 100644 --- a/upgrade-helper.conf +++ b/upgrade-helper.conf @@ -61,8 +61,8 @@ # When running with --incremental, how many days to suppress any upgrade # attempt for recipes listed in retry_any_version_recipes, regardless of # version or result. Useful for recipes with very frequent upstream releases. -# Default is 7 days. -#retry_any_version_interval=7 +# Default is 30 days. +#retry_any_version_interval=30 # Space-separated list of recipes that release so frequently that they would # flood the mailing list. These are throttled by retry_any_version_interval -- 2.47.3