Skip to content

Commit

Permalink
Increase max concurrent requests for DNS from 100 to 1000
Browse files Browse the repository at this point in the history
This addresses/alleviates moby#2214

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

Signed-off-by: Thiago Alves Silva <thiago.alves@aurea.com>
  • Loading branch information
thiagoalves authored and robertgzr committed Mar 4, 2019
1 parent 7f35f0a commit 4bb520a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit 4bb520a

Please sign in to comment.