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 <[email protected]>
  • Loading branch information
alexec authored May 24, 2021
1 parent ffd429e commit f3d9582
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 @@ -109,7 +109,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 f3d9582

Please sign in to comment.