Skip to content

Commit

Permalink
Fix typo on gossip default port
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Nov 27, 2018
1 parent 957220e commit 6a732f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func newStartCommand() *cobra.Command {
cmd.Flags().StringVarP(&raftAddr, "raft-addr", "", ":9000", "Raft bind address (host:port)")
cmd.Flags().StringVarP(&mgmtAddr, "mgmt-addr", "", ":8090", "Management endpoint bind address (host:port)")
cmd.Flags().StringVarP(&joinAddr, "join-addr", "", "", "Raft: Comma-delimited list of nodes ([host]:port), through which a cluster can be joined")
cmd.Flags().StringVarP(&gossipAddr, "gossip-addr", "", "9100", "Gossip: management endpoint bind address (host:port)")
cmd.Flags().StringVarP(&gossipAddr, "gossip-addr", "", ":9100", "Gossip: management endpoint bind address (host:port)")
cmd.Flags().StringSliceVarP(&gossipJoinAddr, "gossip-join-addr", "", []string{}, "Gossip: Comma-delimited list of nodes ([host]:port), through which a cluster can be joined")
cmd.Flags().StringVarP(&dbPath, "dbpath", "p", "/var/tmp/qed/data", "Set default storage path")
cmd.Flags().StringVarP(&raftPath, "raftpath", "", "/var/tmp/qed/raft", "Set raft storage path")
Expand Down

0 comments on commit 6a732f0

Please sign in to comment.