Module
Core
Proposal
In
|
new ZerodepDockerHttpClient.Builder() |
|
.dockerHost(transportConfig.getDockerHost()) |
|
.sslConfig(transportConfig.getSslConfig()) |
|
.build(); |
there is currently no option to set an overall responseTimeout.
This can result in hanging threads when there is a problem with Docker's API and no response is ever returned. Although this is rare, we observed such a problem recently in xdev-software/tci#370
All other timeouts are configured in the default Apache HTTP client:
It would be nice to somehow have an option to set the overall timeout (e.g. 10 min) to prevent situations like this.
Module
Core
Proposal
In
testcontainers-java/core/src/main/java/org/testcontainers/dockerclient/DockerClientProviderStrategy.java
Lines 395 to 398 in 946b6aa
there is currently no option to set an overall
responseTimeout.This can result in hanging threads when there is a problem with Docker's API and no response is ever returned. Although this is rare, we observed such a problem recently in xdev-software/tci#370
All other timeouts are configured in the default Apache HTTP client:
It would be nice to somehow have an option to set the overall timeout (e.g. 10 min) to prevent situations like this.