Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
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