File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ internal partial class BindableSentryOptions
4444 public double ? TracesSampleRate { get ; set ; }
4545 public List < string > ? TracePropagationTargets { get ; set ; }
4646 public bool ? PropagateTraceparent { get ; set ; }
47+ public bool ? StrictTraceContinuation { get ; set ; }
48+ public string ? OrgId { get ; set ; }
4749 public double ? ProfilesSampleRate { get ; set ; }
4850 public StackTraceMode ? StackTraceMode { get ; set ; }
4951 public long ? MaxAttachmentSize { get ; set ; }
@@ -97,6 +99,8 @@ public void ApplyTo(SentryOptions options)
9799 options . ProfilesSampleRate = ProfilesSampleRate ?? options . ProfilesSampleRate ;
98100 options . TracePropagationTargets = TracePropagationTargets ? . Select ( s => new StringOrRegex ( s ) ) . ToList ( ) ?? options . TracePropagationTargets ;
99101 options . PropagateTraceparent = PropagateTraceparent ?? options . PropagateTraceparent ;
102+ options . StrictTraceContinuation = StrictTraceContinuation ?? options . StrictTraceContinuation ;
103+ options . OrgId = OrgId ?? options . OrgId ;
100104 options . StackTraceMode = StackTraceMode ?? options . StackTraceMode ;
101105 options . MaxAttachmentSize = MaxAttachmentSize ?? options . MaxAttachmentSize ;
102106 options . DetectStartupTime = DetectStartupTime ?? options . DetectStartupTime ;
You can’t perform that action at this time.
0 commit comments