mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Replace panics with log.Fatals
This commit is contained in:
parent
55bff343cd
commit
f88d3f82da
2 changed files with 8 additions and 11 deletions
7
db/db.go
7
db/db.go
|
@ -68,17 +68,20 @@ func Db() DB {
|
||||||
}
|
}
|
||||||
log.Debug("Opening DataBase", "dbPath", Path, "driver", Driver)
|
log.Debug("Opening DataBase", "dbPath", Path, "driver", Driver)
|
||||||
|
|
||||||
|
// Create a read database connection
|
||||||
rdb, err := sql.Open(Driver+"_custom", Path)
|
rdb, err := sql.Open(Driver+"_custom", Path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
log.Fatal("Error opening read database", err)
|
||||||
}
|
}
|
||||||
rdb.SetMaxOpenConns(max(4, runtime.NumCPU()))
|
rdb.SetMaxOpenConns(max(4, runtime.NumCPU()))
|
||||||
|
|
||||||
|
// Create a write database connection
|
||||||
wdb, err := sql.Open(Driver+"_custom", Path)
|
wdb, err := sql.Open(Driver+"_custom", Path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
log.Fatal("Error opening write database", err)
|
||||||
}
|
}
|
||||||
wdb.SetMaxOpenConns(1)
|
wdb.SetMaxOpenConns(1)
|
||||||
|
|
||||||
return &db{
|
return &db{
|
||||||
readDB: rdb,
|
readDB: rdb,
|
||||||
writeDB: wdb,
|
writeDB: wdb,
|
||||||
|
|
|
@ -29,18 +29,12 @@ update media_file set updated_at = '0001-01-01';
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
|
||||||
once sync.Once
|
|
||||||
initialized bool
|
|
||||||
)
|
|
||||||
|
|
||||||
func isDBInitialized(tx *sql.Tx) bool {
|
func isDBInitialized(tx *sql.Tx) bool {
|
||||||
once.Do(func() {
|
return sync.OnceValue(func() bool {
|
||||||
rows, err := tx.Query("select count(*) from property where id=?", consts.InitialSetupFlagKey)
|
rows, err := tx.Query("select count(*) from property where id=?", consts.InitialSetupFlagKey)
|
||||||
checkErr(err)
|
checkErr(err)
|
||||||
initialized = checkCount(rows) > 0
|
return checkCount(rows) > 0
|
||||||
})
|
})()
|
||||||
return initialized
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkCount(rows *sql.Rows) (count int) {
|
func checkCount(rows *sql.Rows) (count int) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue