From a1295a31de6cfa562a19a7f9c2f64556e609a27d Mon Sep 17 00:00:00 2001 From: mscdex Date: Fri, 28 Jun 2013 13:14:55 -0400 Subject: [PATCH] Connection: update comment --- lib/Connection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Connection.js b/lib/Connection.js index f2ebdcc..75e7432 100644 --- a/lib/Connection.js +++ b/lib/Connection.js @@ -1128,8 +1128,8 @@ Connection.prototype._enqueue = function(fullcmd, promote, cb) { this._queue.push(info); if (!this._curReq) { - // defer until next tick for requests like APPEND where access to the - // request object is needed immediately after enqueueing + // defer until next tick for requests like APPEND and FETCH where access to + // the request object is needed immediately after enqueueing process.nextTick(function() { self._processQueue(); }); } else if (this._curReq.type === 'IDLE') { this._idle.enabled = false;