[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 391d14d091)

Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-03-14 13:38:41 +02:00
committed by GitHub
co-authored by Andreas Christou
parent 418b694e36
commit ee2e4fb15a
+1 -1
View File
@@ -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 {