Skip to content

Commit 3299a9b

Browse files
committed
TUN-8238: Fix type mismatch introduced by fast-forward
1 parent 34a876e commit 3299a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ func (p *Proxy) proxyStream(
272272
_, connectSpan := tr.Tracer().Start(ctx, "stream-connect")
273273

274274
start := time.Now()
275-
originConn, err := connectionProxy.EstablishConnection(ctx, dest, &logger)
275+
originConn, err := connectionProxy.EstablishConnection(ctx, dest, logger)
276276
if err != nil {
277277
connectStreamErrors.Inc()
278278
tracing.EndWithErrorStatus(connectSpan, err)

0 commit comments

Comments
 (0)