Skip to content

Commit

Permalink
Add default for unknown db types (#522)
Browse files Browse the repository at this point in the history
* Add default for unknown db types

* Add dbType to warning
  • Loading branch information
Xavierhorwood authored Aug 7, 2024
1 parent be8cfc3 commit 7ff5c58
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ public static void main(String[] args) {
case "postgres":
databaseType = DatabaseTypes.postgres;
break;
default:
System.out.println("Unknown DB Type " + dbType + " using Mysql. Please use mysql, postgres, mariadb, or none");
}
break;
// Backwards-compatibility for legacy database/mysql settings
Expand Down

0 comments on commit 7ff5c58

Please sign in to comment.