Skip to content

Commit

Permalink
TUN-8238: Fix type mismatch introduced by fast-forward
Browse files Browse the repository at this point in the history
  • Loading branch information
chungthuang committed Feb 19, 2024
1 parent 34a876e commit 3299a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3299a9b

Please sign in to comment.