report processing stack traces to the console

This commit is contained in:
Lincoln Stein 2023-07-08 19:48:32 -04:00
parent 5f7435955e
commit b6cc4df1d8

View File

@ -104,6 +104,7 @@ class DefaultInvocationProcessor(InvocationProcessorABC):
except Exception as e:
error = traceback.format_exc()
logger.error(error)
# Save error
graph_execution_state.set_node_error(invocation.id, error)