Merge pull request #151 from cosbynator/master

Expose a pass-through a logger for generic-pool and bump dependency version
This commit is contained in:
Brian Carlson 2012-07-24 20:28:19 -07:00
commit 5ca05e9cfe
3 changed files with 9 additions and 4 deletions

View File

@ -15,6 +15,10 @@ module.exports = {
//portal. 0 will return all rows at once
rows: 0,
// binary result mode
binary: false,
//Connection pool options - see https://github.com/coopernurse/node-pool
//number of connections to use in connection pool
//0 will disable connection pooling
poolSize: 10,
@ -26,6 +30,6 @@ module.exports = {
//frequeny to check for idle clients within the client pool
reapIntervalMillis: 1000,
// binary result mode
binary: false
//pool log function / boolean
poolLog: false
}

View File

@ -69,7 +69,8 @@ PG.prototype.connect = function(config, callback) {
},
max: defaults.poolSize,
idleTimeoutMillis: defaults.poolIdleTimeout,
reapIntervalMillis: defaults.reapIntervalMillis
reapIntervalMillis: defaults.reapIntervalMillis,
log: defaults.poolLog
});
return pool.acquire(cb);
}

View File

@ -10,7 +10,7 @@
"author" : "Brian Carlson <brian.m.carlson@gmail.com>",
"main" : "./lib",
"dependencies" : {
"generic-pool" : "1.0.9"
"generic-pool" : "1.0.12"
},
"scripts" : {
"test" : "make test-all connectionString=pg://postgres@localhost:5432/postgres",