feat: better SQLite3 configuration, to avoid DB contention

This commit is contained in:
Deluan 2020-02-28 14:35:32 -05:00
parent faa2a978c0
commit 1d886156d5
2 changed files with 2 additions and 1 deletions

View file

@ -83,7 +83,7 @@ func LoadFromFile(confFile string, skipFlags ...bool) {
os.Exit(2)
}
if Server.DbPath == "" {
Server.DbPath = filepath.Join(Server.DataFolder, "navidrome.db")
Server.DbPath = filepath.Join(Server.DataFolder, consts.DefaultDbPath)
}
if os.Getenv("PORT") != "" {
Server.Port = os.Getenv("PORT")