aboutsummaryrefslogtreecommitdiffstats
path: root/src/orchestrator
diff options
context:
space:
mode:
authorRitu Sood <Ritu.Sood@intel.com>2020-06-28 03:04:49 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-28 03:04:49 +0000
commit5a06648cdee4011b355c4be59ff265462e4c3d76 (patch)
tree6ee68fe683d270baa16183c45afe7f61bae316d0 /src/orchestrator
parentcacdf1f29600e0da4c0f029a36463937372db520 (diff)
parentad965bd70c399c96ef07d097d092f5ea94284320 (diff)
Merge "Change the error message for orchestrator startup"
Diffstat (limited to 'src/orchestrator')
-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