mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Rename changelog filename and update version to Argon
This commit is contained in:
parent
7cb968a8cd
commit
b7da9d2ef2
3 changed files with 3 additions and 2 deletions
|
@ -1 +0,0 @@
|
||||||
renamed `keep_jobs`, specifying job cache TTL in hours, to `keep_jobs_seconds`, specifying TTL in seconds
|
|
2
changelog/55295.deprecated
Normal file
2
changelog/55295.deprecated
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
renamed `keep_jobs`, specifying job cache TTL in hours, to `keep_jobs_seconds`, specifying TTL in seconds.
|
||||||
|
`keep_jobs` will be removed in the Argon release
|
|
@ -192,7 +192,7 @@ def get_keep_jobs_seconds(opts):
|
||||||
keep_jobs = opts.get("keep_jobs", 24)
|
keep_jobs = opts.get("keep_jobs", 24)
|
||||||
if keep_jobs_seconds == 86400 and keep_jobs != 24:
|
if keep_jobs_seconds == 86400 and keep_jobs != 24:
|
||||||
salt.utils.versions.warn_until(
|
salt.utils.versions.warn_until(
|
||||||
"Chlorine",
|
"Argon",
|
||||||
"The 'keep_jobs' option has been deprecated and replaced with "
|
"The 'keep_jobs' option has been deprecated and replaced with "
|
||||||
"'keep_jobs_seconds'.",
|
"'keep_jobs_seconds'.",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue