summary refs log tree commit diff
diff options
context:
space:
mode:
authormyk bilokonsky <mbilokonsky@gmail.com>2017-04-15 14:06:25 +0200
committermyk bilokonsky <mbilokonsky@gmail.com>2017-04-15 14:06:25 +0200
commit009671d44ea833607e295e3d960cdf8f0aa21b7f (patch)
tree1d21e067d77bf07bb28e1fb10d9839a11a1aeebd
parent96a3d87d195a2ca23394c7aaf0448112b0c67a00 (diff)
removed trailing comma, something is causing early node to crap out because of }
-rw-r--r--index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js
index 70b1f89..5d5ca2a 100644
--- a/index.js
+++ b/index.js
@@ -19,7 +19,7 @@ var config = {
   host: process.env.DB_HOST || '/var/run/postgresql',
   port: 5432, //env var: PGPORT
   max: 2, // max number of clients in the pool
-  idleTimeoutMillis: 30000, // how long a client is allowed to remain idle before being closed
+  idleTimeoutMillis: 30000 // how long a client is allowed to remain idle before being closed
 };