mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Fix signaler not exiting on cancel (#1638)
* fix: make signaler exit on cancel `break` is incorrect here, as it just breaks out of the select. `return` to exit the function instead. Fixes #1636. Signed-off-by: Ian Kerins <ianskerins@gmail.com> * fix: exit non-zero on fatal error Signed-off-by: Ian Kerins <ianskerins@gmail.com>
This commit is contained in:
parent
5987cd0c08
commit
ce0db8344b
1 changed files with 2 additions and 1 deletions
|
@ -69,6 +69,7 @@ func runNavidrome() {
|
||||||
|
|
||||||
if err := g.Run(); err != nil {
|
if err := g.Run(); err != nil {
|
||||||
log.Error("Fatal error in Navidrome. Aborting", err)
|
log.Error("Fatal error in Navidrome. Aborting", err)
|
||||||
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,7 +112,7 @@ func startSignaler() (func() error, func(err error)) {
|
||||||
}
|
}
|
||||||
log.Info(ctx, "Triggered scan complete", "elapsed", time.Since(start).Round(100*time.Millisecond))
|
log.Info(ctx, "Triggered scan complete", "elapsed", time.Since(start).Round(100*time.Millisecond))
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
break
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, func(err error) {
|
}, func(err error) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue