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

Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-03-14 13:15:15 +02:00
committed by GitHub
co-authored by Andreas Christou
parent 053ff2bc2e
commit a5dc97b4fe
+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 {