Skip to content

Commit 17407ef

Browse files
authored
Increase default client ping timeout from 5 to 10 seconds (#5254)
1 parent d93dcea commit 17407ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/testcontainers/utility/TestcontainersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public String getImageSubstitutorClassName() {
198198
}
199199

200200
public Integer getClientPingTimeout() {
201-
return Integer.parseInt(getEnvVarOrProperty("client.ping.timeout", "5"));
201+
return Integer.parseInt(getEnvVarOrProperty("client.ping.timeout", "10"));
202202
}
203203

204204
@Nullable

0 commit comments

Comments
 (0)