Skip to content

Commit

Permalink
chore: clean codes
Browse files Browse the repository at this point in the history
  • Loading branch information
hantsy committed Dec 23, 2023
1 parent b07b4e7 commit 0179a50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static void registerDynamicProperties(DynamicPropertyRegistry registry) {
String url = "r2dbc:oracle://"
+ oracleContainer.getHost() + ":" + oracleContainer.getFirstMappedPort()
+ "/" + oracleContainer.getDatabaseName();
log.debug("connecting to oracle db: {}", url);
log.debug("connecting to oracle db via r2dbc: {}", url);
registry.add("spring.r2dbc.url", () -> url);
registry.add("spring.r2dbc.username", () -> oracleContainer.getUsername());
registry.add("spring.r2dbc.password", () -> oracleContainer.getPassword());
Expand Down

0 comments on commit 0179a50

Please sign in to comment.