Skip to content

Commit

Permalink
JdbcDatabaseContainer: fix wrong instance call (#5465)
Browse files Browse the repository at this point in the history
createConnection() method calls a wrong driver instance when logging
  • Loading branch information
monosoul authored Jun 27, 2022
1 parent a9c2e9e commit afde5d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public Connection createConnection(String queryString) throws SQLException, NoDr
logger()
.debug(
"Trying to create JDBC connection using {} to {} with properties: {}",
driver.getClass().getName(),
jdbcDriverInstance.getClass().getName(),
url,
info
);
Expand Down

0 comments on commit afde5d3

Please sign in to comment.