TUN-8238: Fix type mismatch introduced by fast-forward

This commit is contained in:
chungthuang 2024-02-19 12:41:38 +00:00
parent 34a876e4e7
commit 3299a9bc15
1 changed files with 1 additions and 1 deletions

View File

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