🐛 fix(chat.py): add exception logging to track errors in stream_build function
This commit is contained in:
parent
e648ac4f41
commit
55f468be3d
1 changed files with 1 additions and 0 deletions
|
|
@ -134,6 +134,7 @@ async def stream_build(flow_id: str):
|
|||
# to set the input_keys values
|
||||
artifacts.update(vertex.artifacts)
|
||||
except Exception as exc:
|
||||
logger.exception(exc)
|
||||
params = str(exc)
|
||||
valid = False
|
||||
flow_data_store[flow_id]["status"] = BuildStatus.FAILURE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue