Skip to content

Commit 1c5ea83

Browse files
authored
Adjusted timeouts again
1 parent 1718b46 commit 1c5ea83

File tree

1 file changed

+2
-2
lines changed
  • oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/rdb

1 file changed

+2
-2
lines changed

oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/rdb/RdbDockerRule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected void before() throws Throwable {
8181
}
8282
rdbContainer = new GenericContainer<>(IMAGE)
8383
.withExposedPorts(exposedPort)
84-
.withStartupTimeout(Duration.ofMinutes(10));
84+
.withStartupTimeout(Duration.ofMinutes(15));
8585

8686
try {
8787
long startTime = Instant.now().toEpochMilli();
@@ -122,7 +122,7 @@ private static boolean checkImageAvailability() throws TimeoutException {
122122
return false;
123123
}
124124
RemoteDockerImage remoteDockerImage = new RemoteDockerImage(IMAGE);
125-
remoteDockerImage.get(10, TimeUnit.MINUTES);
125+
remoteDockerImage.get(60, TimeUnit.MINUTES);
126126
return true;
127127
}
128128

0 commit comments

Comments
 (0)