Skip to content

Commit

Permalink
Fixed Typo in connection function call. (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRahulSharma authored Jan 4, 2024
1 parent a0ad9bf commit e2b5b4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public OracleConnectorConfig(String host, int port, String user, String password

@Override
public String getConnectionString() {
return OracleConstants.getConnectionString(database, host, getPort(), database);
return OracleConstants.getConnectionString(connectionType, host, getPort(), database);
}

@Name(OracleConstants.CONNECTION_TYPE)
Expand Down

0 comments on commit e2b5b4d

Please sign in to comment.