Skip to content

Commit

Permalink
minor bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlovelltroy committed Jan 12, 2024
1 parent c4fc40c commit 2e4d8b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func main() {
for _, database := range config.Databases {
err = execSQL(db, fmt.Sprintf("CREATE DATABASE %s;", database.Name))
if err != nil {
log.Fatal(err)
log.Printf("Failed to create database %s: %s", database.Name, err)
}

for _, user := range database.Users {
Expand Down
2 changes: 1 addition & 1 deletion ochami.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ databases:
password: ChangeMeYouFool
- name: smd
password: ChangeMeYouFool
- name: bssds
- name: bssdb
users:
- name: bss-user
password: ChangeMeYouFool

0 comments on commit 2e4d8b5

Please sign in to comment.