godep: bump etcd to 3.0.6

This commit is contained in:
Hongchao Deng
2016-08-19 21:01:41 -07:00
parent 529edae1f6
commit 28bc62b4ab
19 changed files with 674 additions and 215 deletions

View File

@@ -752,6 +752,7 @@ func NewClusterV3(t *testing.T, cfg *ClusterConfig) *ClusterV3 {
clus := &ClusterV3{
cluster: NewClusterByConfig(t, cfg),
}
clus.Launch(t)
for _, m := range clus.Members {
client, err := NewClientV3(m)
if err != nil {
@@ -759,7 +760,6 @@ func NewClusterV3(t *testing.T, cfg *ClusterConfig) *ClusterV3 {
}
clus.clients = append(clus.clients, client)
}
clus.Launch(t)
return clus
}