fix Executor._on_graph_execution return value on termination

This commit is contained in:
Reinier van der Leer 2025-01-03 15:25:27 +01:00
parent 0df733d6a0
commit 8c80ed8506
No known key found for this signature in database
GPG Key ID: BEB9E26CB6F21336

View File

@ -710,6 +710,7 @@ class Executor:
finished = True
cancel.set()
cancel_thread.join()
return (
exec_stats,
ExecutionStatus.FAILED if error else ExecutionStatus.COMPLETED,