Skip to content

Commit 2ccff10

Browse files
authored
fix: revert connector builder limitation wrongly applied to all the streams (#716)
1 parent 02246dc commit 2ccff10

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2085,13 +2085,7 @@ def create_declarative_stream(
20852085
retriever,
20862086
self._message_repository,
20872087
),
2088-
stream_slicer=cast(
2089-
StreamSlicer,
2090-
StreamSlicerTestReadDecorator(
2091-
wrapped_slicer=combined_slicers,
2092-
maximum_number_of_slices=self._limit_slices_fetched or 5,
2093-
),
2094-
),
2088+
stream_slicer=combined_slicers,
20952089
)
20962090
return DefaultStream(
20972091
partition_generator=partition_generator,

0 commit comments

Comments
 (0)