We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9f23a0 commit df5c8cbCopy full SHA for df5c8cb
airbyte_cdk/sources/declarative/concurrent_declarative_source.py
@@ -206,7 +206,11 @@ 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 (
210
+ isinstance(declarative_stream, DeclarativeStream)
211
+ and name_to_stream_mapping[declarative_stream.name]["type"]
212
+ == "StateDelegatingStream"
213
+ ):
214
stream_state = self._connector_state_manager.get_stream_state(
215
stream_name=declarative_stream.name, namespace=declarative_stream.namespace
216
)
0 commit comments