remove db name environment variable

This commit is contained in:
2026-02-09 18:34:37 -08:00
parent a70dc4882b
commit d35e7bffd3
2 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ func main() {
check("ensuring muzi DB exists", db.CreateDB())
var err error
db.Pool, err = pgxpool.New(context.Background(), db.GetDbUrl(false))
db.Pool, err = pgxpool.New(context.Background(), db.GetDbUrl(true))
check("connecting to muzi database", err)
defer db.Pool.Close()