Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unblock the wait loop under python 3.5 #1257

Merged
merged 1 commit into from May 10, 2016
Merged

unblock the wait loop under python 3.5 #1257

merged 1 commit into from May 10, 2016

Commits on May 10, 2016

  1. unblock the wait loop under python 3.5

    in python 3.5 the select is blocking when waiting for it which prevent quick
    exit on SIGTERM.
    
    The problem is described:
    https://www.python.org/dev/peps/pep-0475/#backward-compatibility
    
    This change fix it by listening for signal event on the worker pipe. Once an
    event is triggered it will forcefully wake up the select and return.
    
    fix #1256
    benoitc committed May 10, 2016
    Copy the full SHA
    b0c0333 View commit details
    Browse the repository at this point in the history