Skip to content

Commit

Permalink
Upgrade to Neo4j Java Driver 5.4.0
Browse files Browse the repository at this point in the history
Closes gh-34344
  • Loading branch information
wilkinsona committed Feb 23, 2023
1 parent f92b6ae commit 525cba1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ void connectionTimeout() {
void maxTransactionRetryTime() {
Neo4jProperties properties = new Neo4jProperties();
properties.setMaxTransactionRetryTime(Duration.ofSeconds(2));
assertThat(mapDriverConfig(properties)).extracting("retrySettings")
.hasFieldOrPropertyWithValue("maxRetryTimeMs", 2000L);
assertThat(mapDriverConfig(properties).maxTransactionRetryTimeMillis()).isEqualTo(2000L);
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ bom {
]
}
}
library("Neo4j Java Driver", "5.2.0") {
library("Neo4j Java Driver", "5.4.0") {
group("org.neo4j.driver") {
modules = [
"neo4j-java-driver"
Expand Down

0 comments on commit 525cba1

Please sign in to comment.