File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ var httpPort = 7000;
43
43
// The pool values shown are the default values.
44
44
function init ( ) {
45
45
oracledb . createPool ( {
46
- user : dbConfig . user ,
47
- password : dbConfig . password ,
48
- connectString : dbConfig . connectString ,
49
- poolMax : 4 , // maximum size of the pool
50
- poolMin : 0 , // let the pool shrink completely
51
- poolIncrement : 1 , // only grow the pool by one connection at a time
52
- poolTimeout : 0 // never terminate idle connections
46
+ user : dbConfig . user ,
47
+ password : dbConfig . password ,
48
+ connectString : dbConfig . connectString ,
49
+ poolMax : 4 , // maximum size of the pool
50
+ poolMin : 0 , // let the pool shrink completely
51
+ poolIncrement : 1 , // only grow the pool by one connection at a time
52
+ poolTimeout : 0 // never terminate idle connections
53
53
} )
54
54
. then ( function ( pool ) {
55
55
// Create HTTP server and listen on port - httpPort
You can’t perform that action at this time.
0 commit comments