You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should find a way to send messages asynchronously while still actually trying to send them before the script exits.
trap only gets triggered for errors so that is not usable
Register-EngineEvent -SourceIdentifier Powershell.Exiting -Action {} gets stuck on Stop-Sentry call indefinitely. Also, it doesn't seem to work reliably
For now, I'm doing what we do in webGL in Unity, i.e. implement a synchronous "background" worker instead of an async one.
The text was updated successfully, but these errors were encountered:
We should find a way to send messages asynchronously while still actually trying to send them before the script exits.
trap
only gets triggered for errors so that is not usableRegister-EngineEvent -SourceIdentifier Powershell.Exiting -Action {}
gets stuck onStop-Sentry
call indefinitely. Also, it doesn't seem to work reliablyFor now, I'm doing what we do in webGL in Unity, i.e. implement a synchronous "background" worker instead of an async one.
The text was updated successfully, but these errors were encountered: