From 7ef56ee1260f601e8f9af0ed96ff519c80d49d1f Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Mon, 16 May 2016 10:07:48 +1000 Subject: [PATCH] Fixed example indentation for consistency --- examples/webapppromises.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/webapppromises.js b/examples/webapppromises.js index 0a4a61fa..1e1fab21 100644 --- a/examples/webapppromises.js +++ b/examples/webapppromises.js @@ -43,13 +43,13 @@ var httpPort = 7000; // The pool values shown are the default values. function init() { oracledb.createPool({ - user: dbConfig.user, - password: dbConfig.password, - connectString: dbConfig.connectString, - poolMax: 4, // maximum size of the pool - poolMin: 0, // let the pool shrink completely - poolIncrement: 1, // only grow the pool by one connection at a time - poolTimeout: 0 // never terminate idle connections + user: dbConfig.user, + password: dbConfig.password, + connectString: dbConfig.connectString, + poolMax: 4, // maximum size of the pool + poolMin: 0, // let the pool shrink completely + poolIncrement: 1, // only grow the pool by one connection at a time + poolTimeout: 0 // never terminate idle connections }) .then(function(pool) { // Create HTTP server and listen on port - httpPort