Skip to content

Commit

Permalink
fix: don't clutter db close in main
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed May 8, 2021
1 parent 58624f0 commit e6b7691
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/gonic/gonic.go
Expand Up @@ -104,7 +104,8 @@ func main() {
JukeboxEnabled: *confJukeboxEnabled,
})
if err != nil {
log.Fatalf("error creating server: %v\n", err)
log.Printf("error creating server: %v\n", err)
return
}

var g run.Group
Expand Down

0 comments on commit e6b7691

Please sign in to comment.