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 6439f74 commit 62ff4dfCopy full SHA for 62ff4df
airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py
@@ -3330,15 +3330,14 @@ def _get_url() -> str:
3330
),
3331
)
3332
3333
- cursor_used_for_stop_condition = stop_condition_cursor or None
3334
paginator = (
3335
self._create_component_from_model(
3336
model=model.paginator,
3337
config=config,
3338
url_base=_get_url(),
3339
extractor_model=model.record_selector.extractor,
3340
decoder=decoder,
3341
- cursor_used_for_stop_condition=cursor_used_for_stop_condition,
+ cursor_used_for_stop_condition=stop_condition_cursor or None,
3342
3343
if model.paginator
3344
else NoPagination(parameters={})
0 commit comments