From a5dc97b4fea5f121a2e18fd34d96b0d305c31da8 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:15:15 +0200 Subject: [PATCH] [v10.3.x] Chore: Bump update checker interval to 1 day (#84451) 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 {