etcd3locker: Update import path for etcd3

This commit is contained in:
Marius 2019-06-16 17:06:17 +02:00
parent b6ece4905b
commit 226638bcc4
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import (
"time"
"github.com/tus/tusd/pkg/handler"
"go.etcd.io/etcd/clientv3/concurrency"
"github.com/coreos/etcd/clientv3/concurrency"
)
type etcd3Lock struct {

View File

@ -48,8 +48,8 @@ import (
"time"
"github.com/tus/tusd/pkg/handler"
etcd3 "go.etcd.io/etcd/clientv3"
"go.etcd.io/etcd/clientv3/concurrency"
etcd3 "github.com/coreos/etcd/clientv3"
"github.com/coreos/etcd/clientv3/concurrency"
)
var (

View File

@ -2,7 +2,7 @@ package etcd3locker
import (
etcd_harness "github.com/chen-anders/go-etcd-harness"
"go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/clientv3"
"os"
"testing"
"time"