From 3299a9bc151d2432af6f48d471d50b623d767efa Mon Sep 17 00:00:00 2001 From: chungthuang Date: Mon, 19 Feb 2024 12:41:38 +0000 Subject: [PATCH] TUN-8238: Fix type mismatch introduced by fast-forward --- proxy/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/proxy.go b/proxy/proxy.go index 7a6e82b6..dc02eeac 100644 --- a/proxy/proxy.go +++ b/proxy/proxy.go @@ -272,7 +272,7 @@ func (p *Proxy) proxyStream( _, connectSpan := tr.Tracer().Start(ctx, "stream-connect") start := time.Now() - originConn, err := connectionProxy.EstablishConnection(ctx, dest, &logger) + originConn, err := connectionProxy.EstablishConnection(ctx, dest, logger) if err != nil { connectStreamErrors.Inc() tracing.EndWithErrorStatus(connectSpan, err)