etcd3locker: Update import path for etcd3
This commit is contained in:
parent
b6ece4905b
commit
226638bcc4
|
@ -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 {
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue