From ee2e4fb15a5bab1f552e685aade6d221ece37403 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 13:38:41 +0200 Subject: [PATCH] [v10.2.x] Chore: Bump update checker interval to 1 day (#84450) Chore: Bump update checker interval to 1 day (#84404) * Bump interval to 1hr * 2 hours is better than 1 * Bump further to 1 day (cherry picked from commit 391d14d091e91301f95d6ce01ba8ca4dd4170b52) Co-authored-by: Andreas Christou --- pkg/services/updatechecker/grafana.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/updatechecker/grafana.go b/pkg/services/updatechecker/grafana.go index 5a56d886c7d..3760fe06b13 100644 --- a/pkg/services/updatechecker/grafana.go +++ b/pkg/services/updatechecker/grafana.go @@ -60,7 +60,7 @@ func (s *GrafanaService) IsDisabled() bool { func (s *GrafanaService) Run(ctx context.Context) error { s.instrumentedCheckForUpdates(ctx) - ticker := time.NewTicker(time.Minute * 10) + ticker := time.NewTicker(time.Hour * 24) run := true for run {