Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(blocking-monitor): omit 'handled' flag for blocking call detectio…
…n events (level: warning)

This resolves #XXXX. The 'handled' property is now omitted from the mechanism for blocking call detection events, so they are not treated as unhandled crashes in Sentry UI.
  • Loading branch information
jamescrosswell committed Aug 21, 2025
commit 4a43b87679a7d9b09d1cf44e8739ed28f5e54f09
1 change: 0 additions & 1 deletion src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public void BlockingStart(DetectionSource detectionSource)
Mechanism = new Mechanism
{
Type = "BlockingCallDetector",
Handled = false,
Description = "Blocking calls can cause ThreadPool starvation.",
Source = detectionSource.ToString()
},
Expand Down
Loading