From fe6215d71cb57b101c7aeb7cadabf35008f87c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Wed, 23 Mar 2016 15:28:25 +0100 Subject: [PATCH] readme: fix pool size --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2956359..f5379987 100644 --- a/README.md +++ b/README.md @@ -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);