Commit 266e5246 authored by indexzero's avatar indexzero

[debug] Roll back last commit ... connection = close was ineffective

parent 7b0ea85e
...@@ -60,7 +60,7 @@ Pool.prototype.request = function () { ...@@ -60,7 +60,7 @@ Pool.prototype.request = function () {
if (args[2]) headers = args[2]; if (args[2]) headers = args[2];
if (!headers) headers = {}; if (!headers) headers = {};
if (!headers.Connection) headers.Connection = 'close'; if (!headers.Connection) headers.Connection = 'keep-alive';
self.getClient(function (client) { self.getClient(function (client) {
var errorListener = function (error) { var errorListener = function (error) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment