mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
Compare commits
2 Commits
v0.7.33
...
dependabot
Author | SHA1 | Date | |
---|---|---|---|
|
67e849bc66 | ||
eb706c3e51 |
668
package-lock.json
generated
668
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -174,7 +174,7 @@
|
|||||||
"vue-i18n": "~9.13.1",
|
"vue-i18n": "~9.13.1",
|
||||||
"vue-loader": "~16.8.3",
|
"vue-loader": "~16.8.3",
|
||||||
"vuedraggable": "~4.1.0",
|
"vuedraggable": "~4.1.0",
|
||||||
"webpack": "^5.91.0",
|
"webpack": "^5.98.0",
|
||||||
"webpack-cli": "~4.9.1"
|
"webpack-cli": "~4.9.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@@ -173,13 +173,13 @@ export class MySQLClient extends BaseClient {
|
|||||||
remotePort: this._params.port
|
remotePort: this._params.port
|
||||||
});
|
});
|
||||||
|
|
||||||
// dbConfig.host = this._ssh.config[0].host;
|
dbConfig.host = undefined;
|
||||||
dbConfig.port = tunnel.localPort;
|
dbConfig.port = tunnel.localPort;
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
if (this._ssh) {
|
if (this._ssh) {
|
||||||
this._ssh.close();
|
|
||||||
this._ssh.closeTunnel();
|
this._ssh.closeTunnel();
|
||||||
|
this._ssh.close();
|
||||||
}
|
}
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
@@ -227,8 +227,8 @@ export class MySQLClient extends BaseClient {
|
|||||||
clearInterval(this._keepaliveTimer);
|
clearInterval(this._keepaliveTimer);
|
||||||
this._keepaliveTimer = undefined;
|
this._keepaliveTimer = undefined;
|
||||||
if (this._ssh) {
|
if (this._ssh) {
|
||||||
this._ssh.close();
|
|
||||||
this._ssh.closeTunnel();
|
this._ssh.closeTunnel();
|
||||||
|
this._ssh.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -179,7 +179,7 @@ export class PostgreSQLClient extends BaseClient {
|
|||||||
remotePort: this._params.port
|
remotePort: this._params.port
|
||||||
});
|
});
|
||||||
|
|
||||||
// dbConfig.host = this._ssh.config[0].host;
|
dbConfig.host = undefined;
|
||||||
dbConfig.port = tunnel.localPort;
|
dbConfig.port = tunnel.localPort;
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
|
Reference in New Issue
Block a user