Skip to content

Commit

Permalink
Fix import path to fileutils in listener
Browse files Browse the repository at this point in the history
transport/listener: change the import path of fileutil

Version 3.3 still uses the github.com/coreos/etcd prefix, but the transport/listener package
used the go.etcd.io/etcd path prefix.
  • Loading branch information
Sergey Vilgelm committed Aug 22, 2020
1 parent bdd5784 commit 386ebbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transport/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"strings"
"time"

"github.com/coreos/etcd/pkg/fileutil"
"github.com/coreos/etcd/pkg/tlsutil"
"go.etcd.io/etcd/pkg/fileutil"
)

func NewListener(addr, scheme string, tlsinfo *TLSInfo) (l net.Listener, err error) {
Expand Down

0 comments on commit 386ebbb

Please sign in to comment.