*: update import paths to "go.etcd.io/etcd"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
This commit is contained in:
Gyuho Lee
2018-08-28 17:13:25 -07:00
parent 2ac04381a2
commit d37f1521b7
278 changed files with 623 additions and 623 deletions

View File

@ -29,9 +29,9 @@ import (
"sync"
"time"
"github.com/coreos/etcd/functional/rpcpb"
"github.com/coreos/etcd/pkg/debugutil"
"github.com/coreos/etcd/pkg/fileutil"
"go.etcd.io/etcd/functional/rpcpb"
"go.etcd.io/etcd/pkg/debugutil"
"go.etcd.io/etcd/pkg/fileutil"
"github.com/prometheus/client_golang/prometheus/promhttp"
"go.uber.org/zap"
@ -593,7 +593,7 @@ func (clus *Cluster) WaitHealth() error {
// wait 60s to check cluster health.
// TODO: set it to a reasonable value. It is set that high because
// follower may use long time to catch up the leader when reboot under
// reasonable workload (https://github.com/coreos/etcd/issues/2698)
// reasonable workload (https://go.etcd.io/etcd/issues/2698)
for i := 0; i < 60; i++ {
for _, m := range clus.Members {
if err = m.WriteHealthKey(); err != nil {