Skip to content

Commit

Permalink
Merge pull request #52 from googleprivate/max-param-typo
Browse files Browse the repository at this point in the history
Correct maximum parameter typo
  • Loading branch information
markmandel committed Jan 9, 2018
2 parents 0f24ba5 + 346ee3a commit 7b868a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gameservers/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func main() {
pflag.String(sidecarFlag, viper.GetString(sidecarFlag), "Flag to overwrite the GameServer sidecar image that is used. Can also use SIDECAR env variable")
pflag.Bool(pullSidecarFlag, viper.GetBool(pullSidecarFlag), "For development purposes, set the sidecar image to have a ImagePullPolicy of Always. Can also use ALWAYS_PULL_SIDECAR env variable")
pflag.Int32(minPortFlag, 0, "Required. The minimum port that that a GameServer can be allocated to. Can also use MIN_PORT env variable.")
pflag.Int32(maxPortFlag, 0, "Required. The minimum port that that a GameServer can be allocated to. Can also use MAX_PORT env variable")
pflag.Int32(maxPortFlag, 0, "Required. The maximum port that that a GameServer can be allocated to. Can also use MAX_PORT env variable")
pflag.Parse()

viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_"))
Expand Down

0 comments on commit 7b868a8

Please sign in to comment.