From 766e3b90bc2cb47cac08f525fff5e72ba08ac0aa Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Mon, 18 Jan 2021 10:59:01 -0600 Subject: [PATCH] wip --- go.mod | 2 +- go.sum | 2 ++ test/disco.go | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 5f1edb1b2..766945c7d 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/pilosa/pilosa/v2 replace github.com/hashicorp/memberlist => github.com/pilosa/memberlist v0.1.4-0.20190415211605-f6512523c021 -replace go.etcd.io/etcd => github.com/molecula/etcd v0.0.0-20210108232729-18e95f2f5b93 +replace go.etcd.io/etcd => github.com/molecula/etcd v0.0.0-20210115113447-5d28bda617d2 require ( github.com/CAFxX/gcnotifier v0.0.0-20190112062741-224a280d589d diff --git a/go.sum b/go.sum index f5021bc1b..b9e3afc05 100644 --- a/go.sum +++ b/go.sum @@ -249,6 +249,8 @@ github.com/molecula/apophenia v0.0.0-20190827192002-68b7a14a478b h1:cZADDaNYM7xn github.com/molecula/apophenia v0.0.0-20190827192002-68b7a14a478b/go.mod h1:uXd1BiH7xLmgkhVmspdJLENv6uGWrTL/MQX2TN7Yz9s= github.com/molecula/etcd v0.0.0-20210108232729-18e95f2f5b93 h1:9a+hOGmPrcJEfpK07rzeA0D+F99a+2iha5PfDXGLrbE= github.com/molecula/etcd v0.0.0-20210108232729-18e95f2f5b93/go.mod h1:yVHk9ub3CSBatqGNg7GRmsnfLWtoW60w4eDYfh7vHDg= +github.com/molecula/etcd v0.0.0-20210115113447-5d28bda617d2 h1:pkzCVLSrFQGVQv3raVGJw6aJCJdIZC/z59tUsSU1Zws= +github.com/molecula/etcd v0.0.0-20210115113447-5d28bda617d2/go.mod h1:1X1h4BZ44WjM0LJof1gKKLap1OA4RsicGCDRtACTkLI= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223 h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= diff --git a/test/disco.go b/test/disco.go index 738792262..4ada30db5 100644 --- a/test/disco.go +++ b/test/disco.go @@ -40,7 +40,6 @@ func GenPortsConfig(ports []Ports) []*server.Config { name := fmt.Sprintf("server%d", i) var lClientURL, lPeerURL string - name := fmt.Sprintf("server%d", i) lsnC, portC := port.MustGetBoundTCPListener() lClientURL := fmt.Sprintf("http://localhost:%d", portC) lsnP, portP := port.MustGetBoundTCPListener()