removing connection pooling until it is finished and tested

This commit is contained in:
Brian Carlson 2010-12-13 10:35:54 -06:00
parent 8ba010b0fe
commit 0d7936f7ae

View File

@ -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();