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 5c341a8 commit 19da94dCopy full SHA for 19da94d
airbyte_cdk/sources/declarative/concurrent_declarative_source.py
@@ -135,7 +135,8 @@ def read(
135
catalog: ConfiguredAirbyteCatalog,
136
state: Optional[List[AirbyteStateMessage]] = None,
137
) -> Iterator[AirbyteMessage]:
138
- self._connector_state_manager = ConnectorStateManager(state=state)
+ if state:
139
+ self._connector_state_manager = ConnectorStateManager(state=state)
140
concurrent_streams, _ = self._group_streams(config=config)
141
142
# ConcurrentReadProcessor pops streams that are finished being read so before syncing, the names of
0 commit comments