aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRajamohan Raj <rajamohan.raj@intel.com>2020-06-25 19:15:44 +0000
committerRajamohan Raj <rajamohan.raj@intel.com>2020-06-25 19:15:44 +0000
commitad965bd70c399c96ef07d097d092f5ea94284320 (patch)
treee52e7a265cab9eb7506f62ad4b3cd34730159a66
parent672d736a054ddffaecd2910a8171844fddc38bdd (diff)
Change the error message for orchestrator startup
In this patch, changed the error message for orchestrator startup without the TLS. Earlier the message was bit ambiguous. Issue-ID: MULTICLOUD-1099 Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com> Change-Id: Idbeefdf5b725f46a52b13ff76981e4dadbe5c86f
-rw-r--r--src/orchestrator/cmd/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/cmd/main.go b/src/orchestrator/cmd/main.go
index b5792b9b..1ace5ca4 100644
--- a/src/orchestrator/cmd/main.go
+++ b/src/orchestrator/cmd/main.go
@@ -72,7 +72,7 @@ func main() {
tlsConfig, err := auth.GetTLSConfig("ca.cert", "server.cert", "server.key")
if err != nil {
- log.Println("Error Getting TLS Configuration. Starting without TLS...")
+ log.Println("WARNING :: Getting TLS Configuration failed. Starting without TLS...")
log.Fatal(httpServer.ListenAndServe())
} else {
httpServer.TLSConfig = tlsConfig