Merge pull request #971 from LinusU/patch-1

readme: fix pool size
This commit is contained in:
Brian C 2016-04-04 10:36:11 -05:00
commit beb8eef1f4

View File

@ -24,7 +24,7 @@ var conString = "postgres://username:password@localhost/database";
//this initializes a connection pool
//it will keep idle connections open for a (configurable) 30 seconds
//and set a limit of 20 (also configurable)
//and set a limit of 10 (also configurable)
pg.connect(conString, function(err, client, done) {
if(err) {
return console.error('error fetching client from pool', err);