Skip to content

Commit d09e4ad

Browse files
authored
Merge branch 'main' into aridemarco/fixed-cocoapods-dependencies
2 parents 3ce6ced + 2efd5ed commit d09e4ad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Sources/Instrumentation/URLSession/URLSessionInstrumentation.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ public class URLSessionInstrumentation {
3131

3232
private var _configuration: URLSessionInstrumentationConfiguration
3333
public var configuration: URLSessionInstrumentationConfiguration {
34-
configurationQueue.sync { _configuration }
34+
get{
35+
configurationQueue.sync { _configuration }
36+
}
37+
set {
38+
configurationQueue.sync { _configuration = newValue }
39+
}
3540
}
3641

3742
private let queue = DispatchQueue(

0 commit comments

Comments
 (0)