Skip to content

Commit 1bdaa6a

Browse files
committed
Use updated Span API for TestSpan
1 parent 916cb96 commit 1bdaa6a

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

Sources/AsyncHTTPClient/HTTPClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ public class HTTPClient {
515515
switch result {
516516
case .success(let (_, response)):
517517
guard let httpResponse = response as? HTTPClient.Response else { return }
518-
span.status = .init(httpResponse.status)
518+
span.setStatus(.init(httpResponse.status))
519519
span.attributes.http.statusCode = Int(httpResponse.status.code)
520520
span.attributes.http.statusText = httpResponse.status.reasonPhrase
521521
span.attributes.http.responseContentLength = httpResponse.body?.readableBytes ?? 0

Tests/AsyncHTTPClientTests/HTTPClientTests.swift

+9-4
Original file line numberDiff line numberDiff line change
@@ -2746,10 +2746,11 @@ private final class TestTracer: TracingInstrument {
27462746
Injector: InjectorProtocol {}
27472747

27482748
final class TestSpan: Span {
2749-
let operationName: String
2750-
let kind: SpanKind
2751-
var status: SpanStatus?
2752-
let context: BaggageContext
2749+
private let operationName: String
2750+
private let kind: SpanKind
2751+
var context: BaggageContext
2752+
2753+
private(set) var status: SpanStatus?
27532754
private(set) var isRecording = false
27542755

27552756
var attributes: SpanAttributes = [:]
@@ -2767,6 +2768,10 @@ private final class TestTracer: TracingInstrument {
27672768
self.endTimestamp = timestamp
27682769
}
27692770

2771+
func setStatus(_ status: SpanStatus) {
2772+
self.status = status
2773+
}
2774+
27702775
init(operationName: String, kind: SpanKind, startTimestamp: Timestamp, context: BaggageContext) {
27712776
self.operationName = operationName
27722777
self.kind = kind

0 commit comments

Comments
 (0)