Merge pull request #2611 from xiang90/ctlport

etcdct: adopt new client port by default
release-2.1
Xiang Li 2015-03-31 10:47:06 -07:00
commit 44665fc055
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func getPeersFlagValue(c *cli.Context) []string {
// If we still don't have peers, use a default
if peerstr == "" {
peerstr = "127.0.0.1:4001"
peerstr = "127.0.0.1:4001,127.0.0.1:2379"
}
return strings.Split(peerstr, ",")