Skip to content

Commit fee48cf

Browse files
giortzisgclaude
andcommitted
Add StrictTraceContinuation and OrgId to BindableSentryOptions
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c0f3fef commit fee48cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Sentry/BindableSentryOptions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)