-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
Description
Module
Core
Proposal
In
Lines 395 to 398 in 946b6aa
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.