We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3136a7 commit ae264b5Copy full SHA for ae264b5
1 file changed
plugboard/component/component.py
@@ -241,7 +241,10 @@ async def _wrapper() -> None:
241
async def _build_producer_graph(self) -> None:
242
"""Builds the producer graph for the component."""
243
if not (self._state and self._state_is_connected):
244
- self._logger.warning("State backend not connected. Cannot build producer graph.")
+ self._logger.warning(
245
+ "State backend not connected. Cannot build producer graph. "
246
+ "Purely event driven models may hang indefinitely."
247
+ )
248
return
249
process = await self._state.get_process_for_component(self.id)
250
input_event_set = {evt.safe_type() for evt in self.io.input_events}
0 commit comments