Skip to content

Commit 16fceb1

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/pip/nltk-3.9
2 parents 681f3fc + 310d26d commit 16fceb1

File tree

4 files changed

+168
-178
lines changed

4 files changed

+168
-178
lines changed

.github/workflows/pypi_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
file_glob: true
4242

4343
- name: Publish to PyPI (${{vars.PYPI_PUBLISH_URL}})
44-
uses: pypa/gh-action-pypi-publish@v1.10.3
44+
uses: pypa/gh-action-pypi-publish@v1.12.2
4545
with:
4646
# Can be toggled at the repository level between `https://upload.pypi.org/legacy/` and `https://test.pypi.org/legacy/`
4747
repository-url: ${{vars.PYPI_PUBLISH_URL}}

airbyte_cdk/sources/declarative/concurrent_declarative_source.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
from airbyte_cdk.sources.declarative.concurrency_level import ConcurrencyLevel
1717
from airbyte_cdk.sources.declarative.declarative_stream import DeclarativeStream
1818
from airbyte_cdk.sources.declarative.extractors import RecordSelector
19+
from airbyte_cdk.sources.declarative.extractors.record_filter import (
20+
ClientSideIncrementalRecordFilterDecorator,
21+
)
1922
from airbyte_cdk.sources.declarative.incremental.datetime_based_cursor import DatetimeBasedCursor
2023
from airbyte_cdk.sources.declarative.interpolation import InterpolatedString
2124
from 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(

0 commit comments

Comments
 (0)