From 60c71a98a4988ab811ee506c4f80b043192604ef Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sat, 10 Aug 2013 11:01:09 -0700 Subject: [PATCH] fix(etcd): checkURL on webURL make it so that dropping the schema isn't fatal. --- etcd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/etcd.go b/etcd.go index cfdaea0b9..e47a37179 100644 --- a/etcd.go +++ b/etcd.go @@ -237,6 +237,7 @@ func main() { if argInfo.WebURL != "" { // start web + argInfo.WebURL = checkURL(argInfo.WebURL, "http") etcdStore.SetMessager(storeMsg) go webHelper() go web.Start(raftServer, argInfo.WebURL)