We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0265f commit 0274085Copy full SHA for 0274085
services/api/blocksim_ratelimiter.go
@@ -48,6 +48,12 @@ func NewBlockSimulationRateLimiter(blockSimURL string) *BlockSimulationRateLimit
48
blockSimURL: blockSimURL,
49
client: http.Client{ //nolint:exhaustruct
50
Timeout: simRequestTimeout,
51
+ Transport: &http.Transport{
52
+ MaxIdleConns: 100,
53
+ MaxIdleConnsPerHost: 100,
54
+ MaxConnsPerHost: 100,
55
+ IdleConnTimeout: 90 * time.Second,
56
+ },
57
},
58
}
59
0 commit comments