From 77887e8253770f1a34514d4c103f7e3c0124c9cf Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Fri, 17 Jan 2014 16:03:46 -0800 Subject: [PATCH] fix(bench): remove trailing slash Remove trailing slash. This works around https://github.com/coreos/go-etcd/issues/82 --- bench/bench.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/bench.go b/bench/bench.go index a56b778c5..b1a65e3fe 100644 --- a/bench/bench.go +++ b/bench/bench.go @@ -37,7 +37,7 @@ func watch(endpoint string, key string) { } func main() { - endpoint := flag.String("endpoint", "http://127.0.0.1:4001/", "etcd HTTP endpoint") + endpoint := flag.String("endpoint", "http://127.0.0.1:4001", "etcd HTTP endpoint") rWrites := flag.Int("write-requests", 50000, "number of writes") cWrites := flag.Int("concurrent-writes", 500, "number of concurrent writes")