diff options
author | Jimmy Praet <jimmy.praet@telenet.be> | 2021-07-15 17:55:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 11:55:48 -0400 |
commit | 8df3d6575a3e07d38b264e5c1581e48aa4a02c88 (patch) | |
tree | fe0bee5ff7f4b9513eac8abbd534a5e15fd43e64 /custom | |
parent | 195c9999a1fce5a0f6e796be9a831761400c3003 (diff) | |
download | gitea-8df3d6575a3e07d38b264e5c1581e48aa4a02c88.tar.gz gitea-8df3d6575a3e07d38b264e5c1581e48aa4a02c88.zip |
Change @every 24h default schedules to @midnight (#16431)v1.16.0-dev
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 251ec7a80e..1917f1f123 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -1671,7 +1671,7 @@ PATH = ;; Notice if not success ;NO_SUCCESS_NOTICE = false ;; Time interval for job to run -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;; Archives created more than OLDER_THAN ago are subject to deletion ;OLDER_THAN = 24h @@ -1697,7 +1697,7 @@ PATH = ;[cron.repo_health_check] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;; Enable running Repository health check task periodically. ;ENABLED = true ;; Run Repository health check task when Gitea starts. @@ -1722,7 +1722,7 @@ PATH = ;RUN_AT_START = true ;; Notice if not success ;NO_SUCCESS_NOTICE = false -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -1736,7 +1736,7 @@ PATH = ;; Notice if not success ;NO_SUCCESS_NOTICE = false ;; Interval as a duration between each synchronization. (default every 24h) -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -1751,7 +1751,7 @@ PATH = ;; Notice if not success ;NO_SUCCESS_NOTICE = false ;; Interval as a duration between each synchronization (default every 24h) -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;; Create new users, update existing user data and disable users that are not in external source anymore (default) ;; or only create new users if UPDATE_EXISTING is set to false ;UPDATE_EXISTING = true @@ -1769,7 +1769,7 @@ PATH = ;; Notice if not success ;NO_SUCCESS_NOTICE = false ;; Interval as a duration between each synchronization (default every 24h) -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;; deleted branches than OLDER_THAN ago are subject to deletion ;OLDER_THAN = 24h @@ -1785,7 +1785,7 @@ PATH = ;; Whether to always run at start up time (if ENABLED) ;RUN_AT_START = false ;; Time interval for job to run -;SCHEDULE = @every 24h +;SCHEDULE = @midnight ;; OlderThan or PerWebhook. How the records are removed, either by age (i.e. how long ago hook_task record was delivered) or by the number to keep per webhook (i.e. keep most recent x deliveries per webhook). ;CLEANUP_TYPE = OlderThan ;; If CLEANUP_TYPE is set to OlderThan, then any delivered hook_task records older than this expression will be deleted. |