Skip to content

Commit

Permalink
fix: add precheck for port 9100
Browse files Browse the repository at this point in the history
  • Loading branch information
dkeven committed Dec 18, 2024
1 parent 2f12448 commit b7dd03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/bootstrap/precheck/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type PreCheckPortsBindable struct {
}

func (t *PreCheckPortsBindable) Execute(runtime connector.Runtime) error {
ports := []int{80, 443, 444, 2444, 30180}
ports := []int{80, 443, 444, 2444, 9100, 30180}
var unbindablePorts []int
for _, port := range ports {
l, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
Expand Down

0 comments on commit b7dd03b

Please sign in to comment.