feat: corrected the logic

This commit is contained in:
=
2025-09-05 15:16:19 +05:30
parent 93a942c49e
commit 485b4fcf7c

View File

@@ -90,7 +90,7 @@ export const getSqlConnectionClient = async (appConnection: Pick<TSqlConnection,
connection: {
database,
port,
host: app === AppConnection.Postgres ? baseHost : host,
host: app === AppConnection.Postgres ? host : baseHost,
user: username,
password,
connectionTimeoutMillis: EXTERNAL_REQUEST_TIMEOUT,