File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
DatadogSDKTesting.xcodeproj
Sources/DatadogSDKTesting Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 22632263 ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
22642264 BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
22652265 CLANG_ENABLE_MODULES = YES;
2266+ DEVELOPMENT_TEAM = "";
22662267 INFOPLIST_FILE = Tests/Info.plist;
22672268 LD_RUNPATH_SEARCH_PATHS = (
22682269 "$(inherited)",
Original file line number Diff line number Diff line change @@ -113,8 +113,10 @@ internal class DDTracer {
113113
114114 /// launchSpanContext will only be available when running in the app launched from UITest, so assign this as the parent
115115 /// when there is no one
116- if let launchContext = launchSpanContext, OpenTelemetrySDK . instance . contextProvider . activeSpan == nil {
116+ if let launchContext = launchSpanContext {
117117 spanBuilder. setParent ( launchContext)
118+ } else {
119+ spanBuilder. setNoParent ( )
118120 }
119121
120122 let span = spanBuilder. startSpan ( )
You can’t perform that action at this time.
0 commit comments