1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Increase max concurrent requests for DNS from 100 to 1000

This addresses/alleviates https://github.com/docker/libnetwork/issues/2214

The new proposed limit should remediate the issue for most users.

Signed-off-by: Thiago Alves Silva <thiago.alves@aurea.com>
This commit is contained in:
Thiago Alves Silva 2018-09-04 16:10:42 -03:00 committed by Thiago Alves Silva
parent e29452841e
commit d642cfdeb6

View file

@ -67,7 +67,7 @@ const (
maxExtDNS = 3 //max number of external servers to try
extIOTimeout = 4 * time.Second
defaultRespSize = 512
maxConcurrent = 100
maxConcurrent = 1024
logInterval = 2 * time.Second
)