Skip to content

Commit

Permalink
fix(controller): Listen on :6060 (#5988)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <alex_collins@intuit.com>
  • Loading branch information
alexec committed May 24, 2021
1 parent 98b930c commit 10ecb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/workflow-controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 10ecb7e

Please sign in to comment.