From ad965bd70c399c96ef07d097d092f5ea94284320 Mon Sep 17 00:00:00 2001 From: Rajamohan Raj Date: Thu, 25 Jun 2020 19:15:44 +0000 Subject: 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 --- src/orchestrator/cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/orchestrator') 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 -- cgit 1.2.3-korg