Skip to content

Commit

Permalink
Increase limit of concurrent HTTP requests (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
nablaone authored Jun 6, 2024
1 parent 78a98b6 commit 825ed69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quesma/quesma/dual_write_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func newDualWriteProxy(logManager *clickhouse.LogManager, indexManager elasticse
routerInstance.reroute(req.Context(), w, req, reqBody, pathRouter, logManager)
})

limitedHandler := newSimultaneousClientsLimiter(handler, 50) // FIXME this should be configurable
limitedHandler := newSimultaneousClientsLimiter(handler, 100) // FIXME this should be configurable

return &dualWriteHttpProxy{
elasticRouter: pathRouter,
Expand Down

0 comments on commit 825ed69

Please sign in to comment.