We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4b1eb commit 2efd5edCopy full SHA for 2efd5ed
Sources/Instrumentation/URLSession/URLSessionInstrumentation.swift
@@ -31,7 +31,12 @@ public class URLSessionInstrumentation {
31
32
private var _configuration: URLSessionInstrumentationConfiguration
33
public var configuration: URLSessionInstrumentationConfiguration {
34
- configurationQueue.sync { _configuration }
+ get{
35
+ configurationQueue.sync { _configuration }
36
+ }
37
+ set {
38
+ configurationQueue.sync { _configuration = newValue }
39
40
}
41
42
private let queue = DispatchQueue(
0 commit comments