From 0d7936f7ae7ea6c204a3e6702c3611d42ec23b52 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Mon, 13 Dec 2010 10:35:54 -0600 Subject: [PATCH] removing connection pooling until it is finished and tested --- lib/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/index.js b/lib/index.js index da3be82f..3e36edbe 100644 --- a/lib/index.js +++ b/lib/index.js @@ -97,10 +97,10 @@ var end = function(callback) { //wrap up common connection management boilerplate var connect = function(config, callback) { - if(poolEnabled()) { - return getPooledClient(config, callback) - } - throw new Error("FUCK") +// if(poolEnabled()) { +// return getPooledClient(config, callback) +// } + var client = new Client(config); client.connect();