fix(graph_engine): NodeRunRetrieverResourceEvent is not handled (#27405)

This commit is contained in:
-LAN- 2025-10-24 16:20:27 +08:00 committed by GitHub
parent 15c1db42dd
commit f45c18ee35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ from core.workflow.graph_events import (
NodeRunLoopStartedEvent, NodeRunLoopStartedEvent,
NodeRunLoopSucceededEvent, NodeRunLoopSucceededEvent,
NodeRunPauseRequestedEvent, NodeRunPauseRequestedEvent,
NodeRunRetrieverResourceEvent,
NodeRunRetryEvent, NodeRunRetryEvent,
NodeRunStartedEvent, NodeRunStartedEvent,
NodeRunStreamChunkEvent, NodeRunStreamChunkEvent,
@ -112,6 +113,7 @@ class EventHandler:
@_dispatch.register(NodeRunLoopSucceededEvent) @_dispatch.register(NodeRunLoopSucceededEvent)
@_dispatch.register(NodeRunLoopFailedEvent) @_dispatch.register(NodeRunLoopFailedEvent)
@_dispatch.register(NodeRunAgentLogEvent) @_dispatch.register(NodeRunAgentLogEvent)
@_dispatch.register(NodeRunRetrieverResourceEvent)
def _(self, event: GraphNodeEventBase) -> None: def _(self, event: GraphNodeEventBase) -> None:
self._event_collector.collect(event) self._event_collector.collect(event)