From 70d5c0995852fba68391a5d4a19e234043d86198 Mon Sep 17 00:00:00 2001 From: Jonathan Baudanza Date: Thu, 25 Jul 2019 10:41:28 -0700 Subject: [PATCH] Remove reference to "min" config option (#126) Because it no longer exists. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a02fa32c..b77b65d8 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,6 @@ var pool2 = new Pool({ port: 5432, ssl: true, max: 20, // set pool max size to 20 - min: 4, // set min pool size to 4 idleTimeoutMillis: 1000, // close idle clients after 1 second connectionTimeoutMillis: 1000, // return an error after 1 second if connection could not be established })