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;
4343// The pool values shown are the default values.
4444function init ( ) {
4545 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
5353 } )
5454 . then ( function ( pool ) {
5555 // Create HTTP server and listen on port - httpPort
You can’t perform that action at this time.
0 commit comments