Skip to content

Commit beb8eef

Browse files
committed
Merge pull request brianc#971 from LinusU/patch-1
readme: fix pool size
2 parents c2650d8 + fe6215d commit beb8eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var conString = "postgres://username:password@localhost/database";
2424

2525
//this initializes a connection pool
2626
//it will keep idle connections open for a (configurable) 30 seconds
27-
//and set a limit of 20 (also configurable)
27+
//and set a limit of 10 (also configurable)
2828
pg.connect(conString, function(err, client, done) {
2929
if(err) {
3030
return console.error('error fetching client from pool', err);

0 commit comments

Comments
 (0)