1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

dont wait for ipython history saver thread before shell exit

This commit is contained in:
Nick Sweeting 2024-05-12 19:25:55 -07:00
parent ce833e8ead
commit b5ad134264
No known key found for this signature in database

View file

@ -37,7 +37,10 @@ is_valid_cli_module = lambda module, subcommand: (
)
def wait_for_bg_threads_to_exit(thread_names: Iterable[str]=(), ignore_names: Iterable[str]=('MainThread', 'ThreadPoolExecutor'), timeout: int=60) -> int:
IGNORED_BG_THREADS = ('MainThread', 'ThreadPoolExecutor', 'IPythonHistorySavingThread') # threads we dont have to wait for before exiting
def wait_for_bg_threads_to_exit(thread_names: Iterable[str]=(), ignore_names: Iterable[str]=IGNORED_BG_THREADS, timeout: int=60) -> int:
"""
Block until the specified threads exit. e.g. pass thread_names=('default_hook_handler',) to wait for webhooks.
Useful for waiting for signal handlers, webhooks, etc. to finish running after a mgmt command completes.