fix(server): use cancellable context instead of Sleep for initial insights delay (#3593)

* bugfix(server): use cancellable contet instead of sleep for initial insights delay

* fix(server): initial delay time

Signed-off-by: Deluan <deluan@navidrome.org>

---------

Signed-off-by: Deluan <deluan@navidrome.org>
Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Kendall Garner 2024-12-24 22:35:19 +00:00 committed by GitHub
parent 0299e488b5
commit f0302525a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -208,7 +208,11 @@ func startInsightsCollector(ctx context.Context) func() error {
return nil
}
log.Info(ctx, "Starting Insight Collector")
time.Sleep(conf.Server.DevInsightsInitialDelay)
select {
case <-time.After(conf.Server.DevInsightsInitialDelay):
case <-ctx.Done():
return nil
}
ic := CreateInsights()
ic.Run(ctx)
return nil