Skip to content

Commit

Permalink
Fix UPTIME_KUMA_DB_NAME issue (#4169)
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam authored Dec 4, 2023
1 parent 478403e commit ad4629c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/setup-database.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class SetupDatabase {
dbConfig.type = process.env.UPTIME_KUMA_DB_TYPE;
dbConfig.hostname = process.env.UPTIME_KUMA_DB_HOSTNAME;
dbConfig.port = process.env.UPTIME_KUMA_DB_PORT;
dbConfig.database = process.env.UPTIME_KUMA_DB_NAME;
dbConfig.dbName = process.env.UPTIME_KUMA_DB_NAME;
dbConfig.username = process.env.UPTIME_KUMA_DB_USERNAME;
dbConfig.password = process.env.UPTIME_KUMA_DB_PASSWORD;
Database.writeDBConfig(dbConfig);
Expand Down

0 comments on commit ad4629c

Please sign in to comment.