File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,15 @@ module.exports = {
35
35
// binary result mode
36
36
binary : false ,
37
37
38
- // Connection pool options - see https://github.com/coopernurse/node-pool
38
+ // Connection pool options - see https://github.com/brianc/node-pg-pool
39
+
39
40
// number of connections to use in connection pool
40
41
// 0 will disable connection pooling
41
42
poolSize : 10 ,
42
43
43
44
// max milliseconds a client can go unused before it is removed
44
45
// from the pool and destroyed
45
- poolIdleTimeout : 30000 ,
46
-
47
- // frequency to check for idle clients within the client pool
48
- reapIntervalMillis : 1000 ,
49
-
50
- // if true the most recently released resources will be the first to be allocated
51
- returnToHead : false ,
52
-
53
- // pool log function / boolean
54
- poolLog : false ,
46
+ idleTimeoutMillis : 30000 ,
55
47
56
48
client_encoding : '' ,
57
49
You can’t perform that action at this time.
0 commit comments