We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f23a0 commit bb559b6Copy full SHA for bb559b6
airbyte_cdk/sources/declarative/concurrent_declarative_source.py
@@ -206,7 +206,7 @@ def _group_streams(
206
# these legacy Python streams the way we do low-code streams to determine if they are concurrent compatible,
207
# so we need to treat them as synchronous
208
209
- if name_to_stream_mapping[declarative_stream.name]["type"] == "StateDelegatingStream":
+ if isinstance(declarative_stream, DeclarativeStream) and name_to_stream_mapping[declarative_stream.name]["type"] == "StateDelegatingStream":
210
stream_state = self._connector_state_manager.get_stream_state(
211
stream_name=declarative_stream.name, namespace=declarative_stream.namespace
212
)
0 commit comments