Skip to content
Snippets Groups Projects
Commit cf0f243d authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

disable http agent in http_forward - it has been capping us at five simul...

disable http agent in http_forward - it has been capping us at five simul forwarded requests per backend process (dbwriter, keysigner)
parent f869b7d3
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,8 @@ module.exports = function(dest, req, res, cb) {
host: u.hostname,
port: u.port,
path: u.pathname,
method: req.method
method: req.method,
agent: false
}, function(pres) {
res.statusCode = pres.statusCode;
// forward along Content-Type and Content-Length, if available
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment