[v10.1.x] Chore: Bump update checker interval to 1 day (#84447)

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:13:24 +02:00
committed by GitHub
co-authored by Andreas Christou
parent 310e6c68c8
commit 56791cdc66
+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 {