diff options
Diffstat (limited to 'plugin/forward/persistent.go')
-rw-r--r-- | plugin/forward/persistent.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/forward/persistent.go b/plugin/forward/persistent.go index 52bd24918..4da1514fe 100644 --- a/plugin/forward/persistent.go +++ b/plugin/forward/persistent.go @@ -29,7 +29,7 @@ type transport struct { stop chan bool } -func newTransport(addr string, tlsConfig *tls.Config) *transport { +func newTransport(addr string) *transport { t := &transport{ avgDialTime: int64(defaultDialTimeout / 2), conns: make(map[string][]*persistConn), |