rename the SessionTracingKey to ConnectionTracingKey

This commit is contained in:
Marten Seemann 2022-03-26 16:00:11 +01:00
parent a088ba4607
commit 9bc32cd021
4 changed files with 11 additions and 11 deletions

View file

@ -203,10 +203,10 @@ func dialContext(
}
c.packetHandlers = packetHandlers
c.tracingID = nextSessionTracingID()
c.tracingID = nextConnTracingID()
if c.config.Tracer != nil {
c.tracer = c.config.Tracer.TracerForConnection(
context.WithValue(ctx, SessionTracingKey, c.tracingID),
context.WithValue(ctx, ConnectionTracingKey, c.tracingID),
protocol.PerspectiveClient,
c.destConnID,
)