From 36d3dfcf9bdff5a48bad072562ad83ff5ea5e07a Mon Sep 17 00:00:00 2001 From: Scott Dodson Date: Thu, 8 Sep 2016 16:45:50 -0400 Subject: [PATCH] Fix 127.0.01 typo --- cluster/images/etcd/migrate-if-needed.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/images/etcd/migrate-if-needed.sh b/cluster/images/etcd/migrate-if-needed.sh index 4b4abe1701a..05087684092 100755 --- a/cluster/images/etcd/migrate-if-needed.sh +++ b/cluster/images/etcd/migrate-if-needed.sh @@ -50,7 +50,7 @@ start_etcd() { --listen-client-urls http://127.0.0.1:${ETCD_PORT} \ --advertise-client-urls http://127.0.0.1:${ETCD_PORT} \ --listen-peer-urls http://127.0.0.1:${ETCD_PEER_PORT} \ - --initial-advertise-peer-urls http://127.0.01:${ETCD_PEER_PORT} \ + --initial-advertise-peer-urls http://127.0.0.1:${ETCD_PEER_PORT} \ 1>>/dev/null 2>&1 & ETCD_PID=$! # Wait until etcd is up.