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

fix: improve error handling in SSH connection

This commit is contained in:
2025-02-12 18:10:27 +01:00
parent 49a3589536
commit 704f70819b
4 changed files with 23 additions and 10 deletions

View File

@ -179,7 +179,7 @@ export class PostgreSQLClient extends BaseClient {
remotePort: this._params.port
});
dbConfig.host = (this._ssh.config as SSHConfig[] & { host: string }).host;
dbConfig.host = this._ssh.config[0].host;
dbConfig.port = tunnel.localPort;
}
catch (err) {