diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d0771a..832dbdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Fixes - Fix PowerShell 7.5.2+ compatibility for SynchronousTransport ([#105](https://github.com/getsentry/sentry-powershell/pull/105)) +- Remove workaround for Dotnet SDK issue causing a hang on process exit - automatic flush should work now. ([#85](https://github.com/getsentry/sentry-powershell/pull/85)) ### Dependencies diff --git a/modules/Sentry/public/Start-Sentry.ps1 b/modules/Sentry/public/Start-Sentry.ps1 index 9ff4ac1..3b7476c 100644 --- a/modules/Sentry/public/Start-Sentry.ps1 +++ b/modules/Sentry/public/Start-Sentry.ps1 @@ -66,9 +66,6 @@ function Start-Sentry { } } } - - # Workaround for https://github.com/getsentry/sentry-dotnet/issues/3141 - $options.DisableAppDomainProcessExitFlush() } process { [Sentry.SentrySdk]::init($options) | Out-Null