mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
fix: comment out listener resumability check (#3316)
This commit is contained in:
@@ -1121,9 +1121,10 @@ class Flow(Generic[T], metaclass=FlowMeta):
|
|||||||
Catches and logs any exceptions during execution, preventing
|
Catches and logs any exceptions during execution, preventing
|
||||||
individual listener failures from breaking the entire flow.
|
individual listener failures from breaking the entire flow.
|
||||||
"""
|
"""
|
||||||
if listener_name in self._completed_methods:
|
# TODO: greyson fix
|
||||||
await self._execute_listeners(listener_name, None)
|
# if listener_name in self._completed_methods:
|
||||||
return
|
# await self._execute_listeners(listener_name, None)
|
||||||
|
# return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
method = self._methods[listener_name]
|
method = self._methods[listener_name]
|
||||||
|
|||||||
Reference in New Issue
Block a user