Skip to content

Commit

Permalink
HCK-7485: fix re api disconnect parameters inconsistency (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannleed authored Aug 7, 2024
1 parent 2a5e83e commit 82b43bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reverse_engineering/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
);
},

disconnect: function (connectionInfo, cb, app) {
disconnect: function (connectionInfo, logger, cb, app) {
const sshService = app.require('@hackolade/ssh-service');
neo4j.close(sshService);
cb();
Expand All @@ -50,7 +50,7 @@ module.exports = {
connectionInfo,
logger,
error => {
this.disconnect(connectionInfo, () => {}, app);
this.disconnect(connectionInfo, logger, () => {}, app);
cb(error);
},
app,
Expand Down

0 comments on commit 82b43bd

Please sign in to comment.