From: Rajamohan Raj Date: Thu, 25 Jun 2020 19:15:44 +0000 (+0000) Subject: Change the error message for orchestrator startup X-Git-Tag: 6.0.0-ONAP~11^2~6^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ad965bd70c399c96ef07d097d092f5ea94284320;p=multicloud%2Fk8s.git 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 Change-Id: Idbeefdf5b725f46a52b13ff76981e4dadbe5c86f --- 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