Skip to content

Commit

Permalink
feat : Change the class used by the Oracle database driver
Browse files Browse the repository at this point in the history
HikariCP logs a Warning when using the oracle.jdbc.driver.OracleDriver class. The use of the oracle.jdbc.OracleDriver class is now recommended (see https://stackoverflow.com/questions/6202653/difference-between-oracle-jdbc-driver-classes/6202721#6202721).
  • Loading branch information
cdouillard authored Jun 20, 2024
1 parent 6658a2c commit 155e759
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public Set<Integer> getLivenessCheckPortNumbers() {

@Override
public String getDriverClassName() {
return "oracle.jdbc.driver.OracleDriver";
return "oracle.jdbc.OracleDriver";
}

@Override
Expand Down

0 comments on commit 155e759

Please sign in to comment.