Disable `update_checker` cron tasks

- This is being disabled as it will weekly connect to a domain.
- This only affects existing installations, as new installations will
have a explicit value being written into app.ini due to https://github.com/go-gitea/gitea/pull/21655
This commit is contained in:
Gusted 2022-12-18 19:56:08 +01:00 committed by Loïc Dachary
parent c7733aba67
commit 14d1e4bee5
Signed by untrusted user: dachary
GPG Key ID: 992D23B392F9E4F2
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ func registerUpdateGiteaChecker() {
} }
RegisterTaskFatal("update_checker", &UpdateCheckerConfig{ RegisterTaskFatal("update_checker", &UpdateCheckerConfig{
BaseConfig: BaseConfig{ BaseConfig: BaseConfig{
Enabled: true, Enabled: false,
RunAtStart: false, RunAtStart: false,
Schedule: "@every 168h", Schedule: "@every 168h",
}, },