Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Sources/Tracing/TracerProtocol+Legacy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ extension LegacyTracer {
_ operationName: String,
context: @autoclosure () -> ServiceContext = .current ?? .topLevel,
ofKind kind: SpanKind = .internal,
isolation: (any Actor)? = #isolation,
isolation: isolated (any Actor)? = #isolation,
function: String = #function,
file fileID: String = #fileID,
line: UInt = #line,
Expand Down Expand Up @@ -610,7 +610,7 @@ extension Tracer {
at instant: @autoclosure () -> some TracerInstant = DefaultTracerClock.now,
context: @autoclosure () -> ServiceContext = .current ?? .topLevel,
ofKind kind: SpanKind = .internal,
isolation: (any Actor)? = #isolation,
isolation: isolated (any Actor)? = #isolation,
function: String = #function,
file fileID: String = #fileID,
line: UInt = #line,
Expand Down
4 changes: 2 additions & 2 deletions Sources/Tracing/TracerProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ extension Tracer {
_ operationName: String,
context: @autoclosure () -> ServiceContext = .current ?? .topLevel,
ofKind kind: SpanKind = .internal,
isolation: (any Actor)? = #isolation,
isolation: isolated (any Actor)? = #isolation,
function: String = #function,
file fileID: String = #fileID,
line: UInt = #line,
Expand Down Expand Up @@ -353,7 +353,7 @@ extension Tracer {
context: @autoclosure () -> ServiceContext = .current ?? .topLevel,
ofKind kind: SpanKind = .internal,
at instant: @autoclosure () -> some TracerInstant = DefaultTracerClock.now,
isolation: (any Actor)? = #isolation,
isolation: isolated (any Actor)? = #isolation,
function: String = #function,
file fileID: String = #fileID,
line: UInt = #line,
Expand Down
Loading