We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f24e444 commit 807036aCopy full SHA for 807036a
1 file changed
src/executorlib/task_scheduler/interactive/dependency.py
@@ -259,7 +259,7 @@ def _execute_tasks_with_dependencies(
259
task_dict = None
260
try:
261
task_return_dict = executor.return_queue.get_nowait()
262
- except queue.Empty:
+ except (queue.Empty, AttributeError):
263
task_return_dict = None
264
if ( # shutdown the executor
265
task_dict is not None and "shutdown" in task_dict and task_dict["shutdown"]
0 commit comments