delete configuration task.cleanup.retry.interval (#6910)

* fix range of configuration `task.cleanup.retry.interval`

* delete unused configuration

* fix on sql

* add name of the PR to the sql

Co-authored-by: Gabriel Ortiga Fernandes <gabriel.fernandes@scclouds.com.br>
This commit is contained in:
GaOrtiga 2022-12-14 18:09:02 -03:00 committed by GitHub
parent f7f03adddb
commit 8fd4ed88c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 9 deletions

View File

@ -865,3 +865,6 @@ SET usage_unit = 'Policy*Month'
WHERE usage_unit = 'Policy-Month';
----- PR Quota custom tariffs #5909 -----
-- delete configuration task.cleanup.retry.interval #6910
DELETE FROM `cloud`.`configuration` WHERE name='task.cleanup.retry.interval';

View File

@ -1263,15 +1263,6 @@ public enum Config {
DefaultPageSize("Advanced", ManagementServer.class, Long.class, "default.page.size", "500", "Default page size for API list* commands", null),
TaskCleanupRetryInterval(
"Advanced",
ManagementServer.class,
Integer.class,
"task.cleanup.retry.interval",
"600",
"Time (in seconds) to wait before retrying cleanup of tasks if the cleanup failed previously. 0 means to never retry.",
"Seconds"),
// Account Default Limits
DefaultMaxAccountUserVms(
"Account Defaults",