From 7b486e2b375eccf72954884d4092e86cd5c6592d Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sun, 22 May 2011 20:18:03 -0700 Subject: [PATCH] Make sure to set drain to false upon htmlfile transport `write`. --- lib/transports/htmlfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/transports/htmlfile.js b/lib/transports/htmlfile.js index e8c2d784..ce23153c 100644 --- a/lib/transports/htmlfile.js +++ b/lib/transports/htmlfile.js @@ -67,6 +67,7 @@ HTMLFile.prototype.handleRequest = function (req) { HTMLFile.prototype.write = function (data) { data = ''; + this.drain = false; this.response.write(data); this.log.debug('htmlfile writing', data); };