summaryrefslogtreecommitdiffstats
path: root/deployment-handler.js
diff options
context:
space:
mode:
authorAlex Shatov <alexs@att.com>2018-09-17 16:21:53 -0400
committerAlex Shatov <alexs@att.com>2018-09-17 16:21:53 -0400
commitcb017456dbe09fc8f3e5270e641ab8f323ecde76 (patch)
treef62de1c4b25754700f0138785a9874db8170d83d /deployment-handler.js
parentceda84d021dde70299f96984ca7aec16740854be (diff)
3.0.2 tls web-server under k8s3.0.2
- external version 3.0.2 - internal version 5.0.2 for code change - no API change - https server is enabled when either of the following pairs are found in fs: 1. etc/cert/cert and etc/cert/pass (old behavior) 2. etc/cert/cert.p12 and etc/cert/p12.pass - added alternative - hide secrets when logging the config - changed Dockerfile to copy the whole etc/ folder that might contain etc/cert/* files - easier to test - replaced CRLF with LF in swagger-ui.js - no code change - unit tested Coverage summary Statements : 77.45% ( 910/1175 ) Branches : 53.7% ( 283/527 ) Functions : 79.9% ( 159/199 ) Lines : 77.85% ( 900/1156 ) Change-Id: I921e0d6ac9573f60fa98910f799f9d034b573542 Signed-off-by: Alex Shatov <alexs@att.com> Issue-ID: DCAEGEN2-780
Diffstat (limited to 'deployment-handler.js')
-rw-r--r--deployment-handler.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/deployment-handler.js b/deployment-handler.js
index 02a0750..edbf84e 100644
--- a/deployment-handler.js
+++ b/deployment-handler.js
@@ -26,6 +26,7 @@ const http = require('http');
const https = require('https');
const express = require('express');
const conf = require('./lib/config');
+const utils = require("./lib/utils");
const createError = require('./lib/dispatcher-error').createDispatcherError;
/* Paths for API routes */
@@ -77,8 +78,8 @@ const start = function(config) {
};
process.mainModule.exports.config = config;
- log.info(null, "Configuration: " + JSON.stringify(config));
- console.log( (new Date()) + ": Configuration: " + JSON.stringify(config, undefined, 2) );
+ log.info(null, "Configuration: " + JSON.stringify(config, utils.hideSecrets));
+ console.log((new Date()) + ": Configuration: " + JSON.stringify(config, utils.hideSecrets, 2) );
set_app();