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
Do not implicitly shut down the shared reusable executor (#498)
All runners with executor=None now share loky's reusable executor
singleton, so a finishing (or cancelled) runner must not shut it down:
another runner may still be submitting work to it, which raised
loky.process_executor.ShutdownExecutorError (seen in the Read the Docs
build of tutorial.advanced-topics.md). The executor is only shut down
when the user explicitly passes shutdown_executor=True; idle loky
workers time out on their own.
0 commit comments