From 7a52cc96672922dcd6ccc77144c7cbbd03a1db2a Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Wed, 13 Aug 2025 19:04:16 -0400 Subject: [PATCH] fix: comment out listener resumability check (#3316) --- src/crewai/flow/flow.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/crewai/flow/flow.py b/src/crewai/flow/flow.py index 06cfd0859..111cae7d6 100644 --- a/src/crewai/flow/flow.py +++ b/src/crewai/flow/flow.py @@ -1121,9 +1121,10 @@ class Flow(Generic[T], metaclass=FlowMeta): Catches and logs any exceptions during execution, preventing individual listener failures from breaking the entire flow. """ - if listener_name in self._completed_methods: - await self._execute_listeners(listener_name, None) - return + # TODO: greyson fix + # if listener_name in self._completed_methods: + # await self._execute_listeners(listener_name, None) + # return try: method = self._methods[listener_name]