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 35ac7ac commit 727f7d3Copy full SHA for 727f7d3
Sources/Instrumentation/SDKResourceExtension/DefaultResources.swift
@@ -31,7 +31,7 @@ public class DefaultResources {
31
let mirror = Mirror(reflecting: self)
32
for children in mirror.children {
33
if let provider = children.value as? ResourceProvider {
34
- resource.merge(other: provider.create())
+ resource = provider.create().merging(other: resource)
35
}
36
37
return resource
0 commit comments