Skip to content

Commit

Permalink
HCK-8742: inject forgotten argument (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilhelmWesser authored Nov 12, 2024
1 parent 75c85b4 commit 6b78f2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reverse_engineering/databaseService/helpers/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ class ConnectionStringConnection extends Connection {
}

class UsernamePasswordConnection extends Connection {
constructor({ commonConfig, credentialsConfig, logger }) {
constructor({ commonConfig, credentialsConfig, connectionInfo, logger }) {
super({ logger });
this.connectionInfo = connectionInfo;
this.commonConfig = commonConfig;
this.credentialsConfig = credentialsConfig;
}
Expand Down

0 comments on commit 6b78f2b

Please sign in to comment.