Merge pull request #2262 from trilogy-group/increase-dns-max-concurrent

Increase max concurrent requests for DNS from 100 to 1024
This commit is contained in:
Flavio Crisciani 2018-10-09 08:02:08 -07:00 committed by GitHub
commit 7c3d556f8b
1 changed files with 1 additions and 1 deletions

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
)