Skip to content

Commit 7ef56ee

Browse files
committed
Fixed example indentation for consistency
1 parent 060dd2e commit 7ef56ee

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/webapppromises.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ var httpPort = 7000;
4343
// The pool values shown are the default values.
4444
function 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

0 commit comments

Comments
 (0)