*: 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

@@ -26,7 +26,7 @@ import (
"sync"
"time"
"github.com/coreos/etcd/pkg/transport"
"go.etcd.io/etcd/pkg/transport"
humanize "github.com/dustin/go-humanize"
"go.uber.org/zap"
@@ -289,8 +289,8 @@ func (s *server) To() string {
// TODO: implement packet reordering from multiple TCP connections
// buffer packets per connection for awhile, reorder before transmit
// - https://github.com/coreos/etcd/issues/5614
// - https://github.com/coreos/etcd/pull/6918#issuecomment-264093034
// - https://go.etcd.io/etcd/issues/5614
// - https://go.etcd.io/etcd/pull/6918#issuecomment-264093034
func (s *server) listenAndServe() {
defer s.closeWg.Done()

View File

@@ -29,7 +29,7 @@ import (
"testing"
"time"
"github.com/coreos/etcd/pkg/transport"
"go.etcd.io/etcd/pkg/transport"
"go.uber.org/zap"
)