1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

perf(PostgreSQL): improved support of connection strings, closes #893

This commit is contained in:
2024-11-08 18:09:37 +01:00
parent c97ade949c
commit f0d312fb59
10 changed files with 15 additions and 73 deletions

View File

@ -155,6 +155,7 @@ export class PostgreSQLClient extends BaseClient {
host: this._params.host,
port: this._params.port,
user: this._params.user,
connectionString: this._params.connectionString,
database: 'postgres' as string,
password: this._params.password,
ssl: null as ConnectionOptions