aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGusted2022-12-18 19:56:08 +0100
committerLoïc Dachary2023-03-12 17:05:30 +0100
commite5d0abb59244809f5181dfbadfbee47531246a18 (patch)
tree691c75b96b3f89440ae147f99b1a1a8bbc3fcaea
parentd3ebc9449c27f1c87d74b46eeb9b5cd9a0a8ec57 (diff)
[PRIVACY] 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 (cherry picked from commit cd0b8b6852563118ab8530c01a48bc612efcf58a) (cherry picked from commit 58d43867cab15a4b93fab6f4b467756e8030fb2d) (cherry picked from commit f290b91e504933be83d5b9540a195173280ab38d) (cherry picked from commit 5bd6d7555478713c91a3c00980060041ed34ba22)
-rw-r--r--services/cron/tasks_extended.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/cron/tasks_extended.go b/services/cron/tasks_extended.go
index 3e0dbd132..af419144a 100644
--- a/services/cron/tasks_extended.go
+++ b/services/cron/tasks_extended.go
@@ -146,7 +146,7 @@ func registerUpdateGiteaChecker() {
}
RegisterTaskFatal("update_checker", &UpdateCheckerConfig{
BaseConfig: BaseConfig{
- Enabled: true,
+ Enabled: false,
RunAtStart: false,
Schedule: "@every 168h",
},