diff --git a/CHANGELOG.md b/CHANGELOG.md index ed287feb39..578b58e5ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Remove `IDisposable` from `SentryStructuredLogger`. Disposal is intended through the owning `IHub` instance ([#4424](https://github.com/getsentry/sentry-dotnet/pull/4424)) - Ensure all buffered logs are sent to Sentry when the application terminates unexpectedly ([#4425](https://github.com/getsentry/sentry-dotnet/pull/4425)) - `InvalidOperationException` potentially thrown during a race condition, especially in concurrent high-volume logging scenarios ([#4428](https://github.com/getsentry/sentry-dotnet/pull/4428)) +- Blocking calls are no longer treated as unhandled crashes ([#4458](https://github.com/getsentry/sentry-dotnet/pull/4458)) ### Dependencies diff --git a/src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs b/src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs index 113a4e85ae..d91b5d2207 100644 --- a/src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs +++ b/src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs @@ -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() },