fix(db): connection issue do to missing host and name of db when connecting with host (#4786)

This commit is contained in:
Meier Lukas
2026-01-03 13:44:01 +01:00
committed by GitHub
parent 1842e5fff5
commit 7d3322576c

View File

@@ -26,7 +26,9 @@ const createMysqlDbConnection = () => {
return mysql.createPool({
...defaultOptions,
host: dbEnv.HOST,
port: dbEnv.PORT,
database: dbEnv.NAME,
user: dbEnv.USER,
password: dbEnv.PASSWORD,
});