readme: fix pool size

This commit is contained in:
Linus Unnebäck 2016-03-23 15:28:25 +01:00
parent 93aa52d43b
commit fe6215d71c

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