File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
airbyte_cdk/sources/declarative Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 1616from airbyte_cdk .sources .declarative .concurrency_level import ConcurrencyLevel
1717from airbyte_cdk .sources .declarative .declarative_stream import DeclarativeStream
1818from airbyte_cdk .sources .declarative .extractors import RecordSelector
19+ from airbyte_cdk .sources .declarative .extractors .record_filter import (
20+ ClientSideIncrementalRecordFilterDecorator ,
21+ )
1922from airbyte_cdk .sources .declarative .incremental .datetime_based_cursor import DatetimeBasedCursor
2023from airbyte_cdk .sources .declarative .interpolation import InterpolatedString
2124from airbyte_cdk .sources .declarative .manifest_declarative_source import ManifestDeclarativeSource
@@ -291,6 +294,9 @@ def _stream_supports_concurrent_partition_processing(
291294 if isinstance (record_selector , RecordSelector ):
292295 if (
293296 record_selector .record_filter
297+ and not isinstance (
298+ record_selector .record_filter , ClientSideIncrementalRecordFilterDecorator
299+ )
294300 and "stream_state" in record_selector .record_filter .condition
295301 ):
296302 self .logger .warning (
You can’t perform that action at this time.
0 commit comments