Skip to content

Commit

Permalink
[debug] Roll back last commit ... connection = close was ineffective
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Sep 22, 2010
1 parent 7b0ea85 commit 266e524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/pool/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 266e524

Please sign in to comment.