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

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