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
When the assertOSError function fails and enters an infinite while-loop, the loop is only as high of a priority as the task that called it. As a result, higher priority tasks can still run, even if a lower priority task experienced an OS error.
This happens any time the OS error occurs in a task that isn't the highest priority. To trap the OS in the loop and force a complete shutdown, one option is to lock the scheduler inside _assertOSError.
The text was updated successfully, but these errors were encountered:
When the assertOSError function fails and enters an infinite while-loop, the loop is only as high of a priority as the task that called it. As a result, higher priority tasks can still run, even if a lower priority task experienced an OS error.
This happens any time the OS error occurs in a task that isn't the highest priority. To trap the OS in the loop and force a complete shutdown, one option is to lock the scheduler inside _assertOSError.
The text was updated successfully, but these errors were encountered: