etcd3locker: Update import path for etcd3
This commit is contained in:
parent
b6ece4905b
commit
226638bcc4
|
@ -7,7 +7,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/tus/tusd/pkg/handler"
|
"github.com/tus/tusd/pkg/handler"
|
||||||
"go.etcd.io/etcd/clientv3/concurrency"
|
"github.com/coreos/etcd/clientv3/concurrency"
|
||||||
)
|
)
|
||||||
|
|
||||||
type etcd3Lock struct {
|
type etcd3Lock struct {
|
||||||
|
|
|
@ -48,8 +48,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/tus/tusd/pkg/handler"
|
"github.com/tus/tusd/pkg/handler"
|
||||||
etcd3 "go.etcd.io/etcd/clientv3"
|
etcd3 "github.com/coreos/etcd/clientv3"
|
||||||
"go.etcd.io/etcd/clientv3/concurrency"
|
"github.com/coreos/etcd/clientv3/concurrency"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -2,7 +2,7 @@ package etcd3locker
|
||||||
|
|
||||||
import (
|
import (
|
||||||
etcd_harness "github.com/chen-anders/go-etcd-harness"
|
etcd_harness "github.com/chen-anders/go-etcd-harness"
|
||||||
"go.etcd.io/etcd/clientv3"
|
"github.com/coreos/etcd/clientv3"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
Loading…
Reference in New Issue