This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
fix ctrl-c not working under autopush_rs #1090
Comments
9 tasks
Note that this will also need to update the sentry code to track the thread handle and join it on shutdown as well. |
10 tasks
pjenvey
added a commit
that referenced
this issue
Feb 13, 2018
also fix pulling SENTRY_DSN from runtime vs build env Closes #1090
pjenvey
added a commit
that referenced
this issue
Feb 13, 2018
also fix pulling SENTRY_DSN from build vs runtime env Closes #1090
pjenvey
added a commit
that referenced
this issue
Feb 13, 2018
also include the rust sentry thread in the shutdown process and fix pulling SENTRY_DSN from build vs runtime env Closes #1090
pjenvey
added a commit
that referenced
this issue
Feb 13, 2018
also include the rust sentry thread in the shutdown process and fix pulling SENTRY_DSN from build vs runtime env Closes #1090
pjenvey
added a commit
that referenced
this issue
Feb 13, 2018
also include the rust sentry thread in the shutdown process and fix pulling SENTRY_DSN from build vs runtime env Closes #1090
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently autopush_rs doesn't correctly handle SIGINT to quit the process. Ideally it would be joining on all the worker threads -- but thread join blocks signal handling.
We may need to make a busy loop in the main python thread to handle receiving the signal and triggering shutdown -- not ideal but I'm not sure there's another option. I think Python 3 may have some improvements for this situation
The text was updated successfully, but these errors were encountered: