mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Clean up runNavidrome function
This commit is contained in:
parent
c4b05dac28
commit
885cd345ab
4 changed files with 41 additions and 20 deletions
8
db/db.go
8
db/db.go
|
@ -44,7 +44,7 @@ func Close() error {
|
|||
return Db().Close()
|
||||
}
|
||||
|
||||
func Init() {
|
||||
func Init() func() {
|
||||
db := Db()
|
||||
|
||||
// Disable foreign_keys to allow re-creating tables in migrations
|
||||
|
@ -74,6 +74,12 @@ func Init() {
|
|||
if err != nil {
|
||||
log.Fatal("Failed to apply new migrations", err)
|
||||
}
|
||||
|
||||
return func() {
|
||||
if err := Close(); err != nil {
|
||||
log.Error("Error closing DB", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type statusLogger struct{ numPending int }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue