From 266e5246eacb4877bb6ab557e6e6b9b8434ad612 Mon Sep 17 00:00:00 2001 From: indexzero Date: Wed, 22 Sep 2010 02:21:47 -0400 Subject: [PATCH] [debug] Roll back last commit ... connection = close was ineffective --- vendor/pool/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/pool/main.js b/vendor/pool/main.js index 87b73074c..8daec03fe 100644 --- a/vendor/pool/main.js +++ b/vendor/pool/main.js @@ -60,7 +60,7 @@ Pool.prototype.request = function () { if (args[2]) headers = args[2]; if (!headers) headers = {}; - if (!headers.Connection) headers.Connection = 'close'; + if (!headers.Connection) headers.Connection = 'keep-alive'; self.getClient(function (client) { var errorListener = function (error) {