Skip to content

Commit 82b43bd

Browse files
authored
HCK-7485: fix re api disconnect parameters inconsistency (#49)
1 parent 2a5e83e commit 82b43bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reverse_engineering/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
);
3737
},
3838

39-
disconnect: function (connectionInfo, cb, app) {
39+
disconnect: function (connectionInfo, logger, cb, app) {
4040
const sshService = app.require('@hackolade/ssh-service');
4141
neo4j.close(sshService);
4242
cb();
@@ -50,7 +50,7 @@ module.exports = {
5050
connectionInfo,
5151
logger,
5252
error => {
53-
this.disconnect(connectionInfo, () => {}, app);
53+
this.disconnect(connectionInfo, logger, () => {}, app);
5454
cb(error);
5555
},
5656
app,

0 commit comments

Comments
 (0)