Skip to content

Commit

Permalink
change admin server port to 9097 (#10500)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshu authored Jan 23, 2025
1 parent 3f28616 commit 61bf944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/gateway2/admin/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

const (
AdminPort = 9091
AdminPort = 9097
)

func RunAdminServer(ctx context.Context, setupOpts *controller.SetupOpts) error {
Expand Down
2 changes: 1 addition & 1 deletion test/ginkgo/parallel/ports.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func portInUseListen(proposedPort uint32) error {
var denyListPorts = map[uint32]struct{}{
// See projects/gateway2/admin/server.go
// This port is reserved for the admin server
9091: {},
9097: {},
}

func portInDenyList(proposedPort uint32) error {
Expand Down

0 comments on commit 61bf944

Please sign in to comment.