Blame SOURCES/change-4001-to-2379-in-help-and-README.patch

504b40
From ddafb2f121148b778081c5c934032870e755c59f Mon Sep 17 00:00:00 2001
5aa948
From: Jan Chaloupka <jchaloup@redhat.com>
504b40
Date: Fri, 16 Dec 2016 17:01:13 +0100
5aa948
Subject: [PATCH] change 4001 to 2379 in help and README
5aa948
5aa948
---
5aa948
 README.md | 2 +-
5aa948
 main.go   | 2 +-
5aa948
 2 files changed, 2 insertions(+), 2 deletions(-)
5aa948
5aa948
diff --git a/README.md b/README.md
504b40
index dffd3ad..6e691c6 100644
5aa948
--- a/README.md
5aa948
+++ b/README.md
504b40
@@ -182,7 +182,7 @@ $ flanneld --remote=10.0.0.3:8888 --networks=blue,green
5aa948
 
5aa948
 ```
5aa948
 --public-ip="": IP accessible by other nodes for inter-host communication. Defaults to the IP of the interface being used for communication.
5aa948
---etcd-endpoints=http://127.0.0.1:4001: a comma-delimited list of etcd endpoints.
5aa948
+--etcd-endpoints=http://127.0.0.1:2379: a comma-delimited list of etcd endpoints.
5aa948
 --etcd-prefix=/coreos.com/network: etcd prefix.
5aa948
 --etcd-keyfile="": SSL key file used to secure etcd communication.
5aa948
 --etcd-certfile="": SSL certification file used to secure etcd communication.
5aa948
diff --git a/main.go b/main.go
504b40
index d6dc894..b6493e0 100644
5aa948
--- a/main.go
5aa948
+++ b/main.go
504b40
@@ -61,7 +61,7 @@ type CmdLineOpts struct {
504b40
 var opts CmdLineOpts
5aa948
 
5aa948
 func init() {
5aa948
-	flag.StringVar(&opts.etcdEndpoints, "etcd-endpoints", "http://127.0.0.1:4001,http://127.0.0.1:2379", "a comma-delimited list of etcd endpoints")
5aa948
+	flag.StringVar(&opts.etcdEndpoints, "etcd-endpoints", "http://127.0.0.1:2379", "a comma-delimited list of etcd endpoints")
5aa948
 	flag.StringVar(&opts.etcdPrefix, "etcd-prefix", "/coreos.com/network", "etcd prefix")
5aa948
 	flag.StringVar(&opts.etcdKeyfile, "etcd-keyfile", "", "SSL key file used to secure etcd communication")
5aa948
 	flag.StringVar(&opts.etcdCertfile, "etcd-certfile", "", "SSL certification file used to secure etcd communication")
5aa948
-- 
504b40
2.7.4
5aa948