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 @@ -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))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Swap the two parts of the note so that the actual fix/improvement comes first.

e.g.

Suggested change
- 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))
- Automatic flush by removing workaround for Dotnet SDK issue causing a hang on process exit. ([#85](https://github.com/getsentry/sentry-powershell/pull/85))


### Dependencies

Expand Down
3 changes: 0 additions & 3 deletions modules/Sentry/public/Start-Sentry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down