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
This commit disables signal handling in windows systems as windows
doesn't natively support POSIX signals. As a result:
- asyncio (default backend for anyio as of v0.1.0b1) doesn't raise
NotImplementedError anymore
- And most of the integration tests are now passing in windows
- Unfortunately, workers can't be shutdown gracefully in windows
as the current logic (v0.1.0b1) relies on signals to implement
graceful shutdown.
A windows-specific method for doing graceful shutdown can be implemented
later.
This is the calling code. Worker exits with this error just after reaching 'new-leader'. Windows systems not having signals seems to be the cause: https://stackoverflow.com/q/45987985/4670905
Python version: 3.8.5
The text was updated successfully, but these errors were encountered: