We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a5e83e commit 82b43bdCopy full SHA for 82b43bd
reverse_engineering/api.js
@@ -36,7 +36,7 @@ module.exports = {
36
);
37
},
38
39
- disconnect: function (connectionInfo, cb, app) {
+ disconnect: function (connectionInfo, logger, cb, app) {
40
const sshService = app.require('@hackolade/ssh-service');
41
neo4j.close(sshService);
42
cb();
@@ -50,7 +50,7 @@ module.exports = {
50
connectionInfo,
51
logger,
52
error => {
53
- this.disconnect(connectionInfo, () => {}, app);
+ this.disconnect(connectionInfo, logger, () => {}, app);
54
cb(error);
55
56
app,
0 commit comments