Browse Source

Rename exception message field

pull/695/head
space-nuko 2 years ago
parent
commit
03f2d0a764
  1. 4
      execution.py

4
execution.py

@ -171,7 +171,7 @@ def recursive_execute(server, prompt, outputs, current_item, extra_data, execute
error_details = {
"node_id": unique_id,
"message": str(ex),
"exception_message": str(ex),
"exception_type": exception_type,
"traceback": traceback.format_tb(tb),
"current_inputs": input_data_formatted,
@ -282,7 +282,7 @@ class PromptExecutor:
"node_type": class_type,
"executed": list(executed),
"message": error["message"],
"exception_message": error["exception_message"],
"exception_type": error["exception_type"],
"traceback": error["traceback"],
"current_inputs": error["current_inputs"],

Loading…
Cancel
Save