Fix import path to fileutils in listener

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.
This commit is contained in:
Sergey Vilgelm
2020-08-22 07:17:46 -05:00
parent bdd57848dc
commit 386ebbb704

View File

@@ -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) {