{"record":{"id":"d4bb52aed82f32ba","repo":"langchain-ai/langgraph","slug":"this-streamchannel-is-bound-to-sync-mode-use-fo","errorCode":null,"errorMessage":"This StreamChannel is bound to sync mode — use 'for' instead.","messagePattern":"This StreamChannel is bound to sync mode — use 'for' instead\\.","errorType":"exception","errorClass":"TypeError","httpStatus":null,"severity":"error","filePath":"libs/langgraph/langgraph/stream/stream_channel.py","lineNumber":215,"sourceCode":"\n    # ------------------------------------------------------------------\n    # Async iteration (caller-driven pump)\n    # ------------------------------------------------------------------\n\n    def __aiter__(self) -> AsyncIterator[T]:\n        \"\"\"Subscribe and return an async cursor. Can be called only once.\n\n        Raises:\n            TypeError: If the channel is unbound or bound to sync mode.\n            RuntimeError: If the channel already has a subscriber.\n        \"\"\"\n        if self._is_async is None:\n            raise TypeError(\n                \"StreamChannel has not been bound yet. \"\n                \"Register the transformer with a StreamMux first.\"\n            )\n        if not self._is_async:\n            raise TypeError(\n                \"This StreamChannel is bound to sync mode — use 'for' instead.\"\n            )\n        if self._subscribed:\n            raise RuntimeError(\n                \"StreamChannel already has a subscriber; use .atee(n) for fan-out.\"\n            )\n        self._subscribed = True\n        return self._async_cursor()\n\n    async def _async_cursor(self) -> AsyncIterator[T]:\n        while True:\n            if self._items:\n                _stamp, item = self._items.popleft()\n                yield item\n            elif self._closed:\n                if self._error is not None:\n                    raise self._error\n                return","sourceCodeStart":197,"sourceCodeEnd":233,"githubUrl":"https://github.com/langchain-ai/langgraph/blob/38031739e551638e373fb553453256c23feeb41f/libs/langgraph/langgraph/stream/stream_channel.py#L197-L233","documentation":"Error \"This StreamChannel is bound to sync mode — use 'for' instead.\" thrown in langchain-ai/langgraph.","triggerScenarios":"Thrown at libs/langgraph/langgraph/stream/stream_channel.py:215 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"38031739e551638e373fb553453256c23feeb41f","analyzedAt":"2026-08-26T18:02:49.312Z","schemaVersion":2},"datasetVersion":"2026-08-26T21:11:00.512Z"}