From 589908a78f00186bb96ccc0440a54197d07038fc Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Mon, 15 Apr 2013 16:00:08 -0700 Subject: [PATCH] The connecting flag should be set to false initially --- lib/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/schema.js b/lib/schema.js index 866b98a9..b5accdd7 100644 --- a/lib/schema.js +++ b/lib/schema.js @@ -66,7 +66,7 @@ function Schema(name, settings) { // Disconnected by default this.connected = false; - this.connecting = true; + this.connecting = false; // create blank models pool this.models = {};