Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/AsyncHTTPClient/RequestBag+Tracing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Tracing
extension RequestBag.LoopBoundState {

/// Starts the "overall" Span that encompases the beginning of a request until receipt of the head part of the response.
mutating func startRequestSpan<T>(tracer: T?) {
mutating func startRequestSpan(tracer: (any Sendable)?) {
guard #available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *),
let tracer = tracer as! (any Tracer)?
else {
Expand Down
Loading