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

Merge remote-tracking branch 'upstream/develop'

This commit is contained in:
mirrorb
2024-09-30 11:22:46 +08:00
21 changed files with 11557 additions and 215 deletions

View File

@ -243,6 +243,10 @@ export class PostgreSQLClient extends BaseClient {
return connection;
}
ping () {
return this.select('1+1').run();
}
destroy () {
this._connection.end();
clearInterval(this._keepaliveTimer);