From e56f83754684487f02d4c9ff9e7982024e9c1cfe Mon Sep 17 00:00:00 2001 From: Burcu Dogan Date: Thu, 22 May 2014 17:26:54 +0200 Subject: [PATCH] Add TODO. --- lib/common/connection.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/common/connection.js b/lib/common/connection.js index 531a15dbe74..0b31c1aeb06 100644 --- a/lib/common/connection.js +++ b/lib/common/connection.js @@ -72,6 +72,7 @@ Connection.prototype.connect = function(callback) { Connection.prototype.req = function(reqOpts, opt_callback) { var that = this; if (!this.isConnected()) { + // TODO(jbd): Disallow multiple connection requests are done. this.connect(function(err) { if (err) { return opt_callback && opt_callback(err);