Upgrade to Neo4j Java Driver 5.4.0

Closes gh-34099
This commit is contained in:
Andy Wilkinson 2023-02-06 13:19:30 +00:00
parent 6d5c624d0a
commit 9cba05da90
2 changed files with 2 additions and 3 deletions

View File

@ -113,8 +113,7 @@ class Neo4jAutoConfigurationTests {
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

View File

@ -1004,7 +1004,7 @@ bom {
]
}
}
library("Neo4j Java Driver", "5.2.0") {
library("Neo4j Java Driver", "5.4.0") {
group("org.neo4j.driver") {
modules = [
"neo4j-java-driver"