mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 07:58:02 +08:00
Merge remote-tracking branch 'upstream/feat/queue-based-graph-engine' into feat/rag-2
This commit is contained in:
@ -188,9 +188,9 @@ class Graph:
|
||||
for node_id, node_config in node_configs_map.items():
|
||||
try:
|
||||
node_instance = node_factory.create_node(node_config)
|
||||
except ValueError as e:
|
||||
logger.warning("Failed to create node instance: %s", str(e))
|
||||
continue
|
||||
except Exception:
|
||||
logger.exception("Failed to create node instance for node_id %s", node_id)
|
||||
raise
|
||||
nodes[node_id] = node_instance
|
||||
|
||||
return nodes
|
||||
|
||||
Reference in New Issue
Block a user