Skip to content

Commit

Permalink
endpoint -> address (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Nov 6, 2024
1 parent fe08a19 commit a0b7416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/zrok/agentStart.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func newAgentStartCommand() *agentStartCommand {
}
command := &agentStartCommand{cmd: cmd}
cmd.Run = command.run
cmd.Flags().StringVar(&command.consoleAddress, "console-endpoint", "127.0.0.1", "gRPC gateway address")
cmd.Flags().StringVar(&command.consoleAddress, "console-address", "127.0.0.1", "gRPC gateway address")
cmd.Flags().Uint16Var(&command.consoleStartPort, "console-start-port", 8080, "gRPC gateway starting port")
cmd.Flags().Uint16Var(&command.consoleEndPort, "console-end-port", 8181, "gRPC gateway ending port")
return command
Expand Down

0 comments on commit a0b7416

Please sign in to comment.