From 10ecb7e5b1264c283d5b88a214431743c8da3468 Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Mon, 24 May 2021 14:22:39 -0700 Subject: [PATCH] fix(controller): Listen on :6060 (#5988) Signed-off-by: Alex Collins --- cmd/workflow-controller/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/workflow-controller/main.go b/cmd/workflow-controller/main.go index 593837bee616..d373641ad8e3 100644 --- a/cmd/workflow-controller/main.go +++ b/cmd/workflow-controller/main.go @@ -102,7 +102,7 @@ func NewRootCommand() *cobra.Command { http.HandleFunc("/healthz", wfController.Healthz) go func() { - log.Println(http.ListenAndServe("localhost:6060", nil)) + log.Println(http.ListenAndServe(":6060", nil)) }() // Wait forever