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
PR #2629 added a force of signal handler because it needs to deal with being launched by multiprocessing.fork. PR #3463 makes interchange into its own process, which should get default signal handlers anyway (?) and so I think there's no need for this additional complication.
cc @rjmello who has looked at interchange start/exit the most recently
The text was updated successfully, but these errors were encountered:
This was introduced in PR #2629 to guard against the submit process
installing a SIGTERM handler and then that handler being unexpectedly
inherited by the interchange via multiprocesssing fork
PR #3463 changed the interchange to run as a fresh Python
process, which will not inherit SIGTERM handlers, so since
then this line has been vestigial.
Fixes issue #3588
This was introduced in PR #2629 to guard against the submit process
installing a SIGTERM handler and then that handler being unexpectedly
inherited by the interchange via multiprocesssing fork
PR #3463 changed the interchange to run as a fresh Python
process, which will not inherit SIGTERM handlers, so since
then this line has been vestigial.
Fixes issue #3588
PR #2629 added a force of signal handler because it needs to deal with being launched by multiprocessing.fork. PR #3463 makes interchange into its own process, which should get default signal handlers anyway (?) and so I think there's no need for this additional complication.
cc @rjmello who has looked at interchange start/exit the most recently
The text was updated successfully, but these errors were encountered: