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.
2 parents 3ce6ced + 2efd5ed commit d09e4adCopy full SHA for d09e4ad
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