Skip to content

Commit 0d7936f

Browse files
committed
removing connection pooling until it is finished and tested
1 parent 8ba010b commit 0d7936f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ var end = function(callback) {
9797

9898
//wrap up common connection management boilerplate
9999
var connect = function(config, callback) {
100-
if(poolEnabled()) {
101-
return getPooledClient(config, callback)
102-
}
103-
throw new Error("FUCK")
100+
// if(poolEnabled()) {
101+
// return getPooledClient(config, callback)
102+
// }
103+
104104
var client = new Client(config);
105105
client.connect();
106106

0 commit comments

Comments
 (0)