diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-06-28 03:04:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-28 03:04:49 +0000 |
commit | 5a06648cdee4011b355c4be59ff265462e4c3d76 (patch) | |
tree | 6ee68fe683d270baa16183c45afe7f61bae316d0 | |
parent | cacdf1f29600e0da4c0f029a36463937372db520 (diff) | |
parent | ad965bd70c399c96ef07d097d092f5ea94284320 (diff) |
Merge "Change the error message for orchestrator startup"
-rw-r--r-- | src/orchestrator/cmd/main.go | 2 |
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 |