Skip to content

Commit

Permalink
Fixed startup bug
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasB-NU authored Jun 24, 2024
1 parent 318d76c commit 6521cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func InitalCheckup() {
if err := db.Ping(); err != nil {
log.SetFlags(log.LstdFlags | log.Lshortfile)
log.Printf("Error connecting to database: %v\n", err)
return
panic(err)
}
db.Exec("CREATE SCHEMA showmaster;")
}
Expand Down

0 comments on commit 6521cd4

Please sign in to comment.