mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
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:
parent
0299e488b5
commit
f0302525a7
1 changed files with 5 additions and 1 deletions
|
@ -208,7 +208,11 @@ func startInsightsCollector(ctx context.Context) func() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
log.Info(ctx, "Starting Insight Collector")
|
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 := CreateInsights()
|
||||||
ic.Run(ctx)
|
ic.Run(ctx)
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue