From f395ab46d53efbe0c6438f87d38c0acd90e5b797 Mon Sep 17 00:00:00 2001 From: Joseph Shearer Date: Mon, 18 Mar 2024 20:46:19 -0400 Subject: [PATCH] Set a default for `next_page` --- estuary-cdk/estuary_cdk/capture/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/estuary-cdk/estuary_cdk/capture/common.py b/estuary-cdk/estuary_cdk/capture/common.py index 6d8e7da94b..8d789716f2 100644 --- a/estuary-cdk/estuary_cdk/capture/common.py +++ b/estuary-cdk/estuary_cdk/capture/common.py @@ -133,7 +133,8 @@ class Backfill(BaseModel, extra="forbid"): description="LogCursor at which incremental replication began" ) next_page: PageCursor = Field( - description="PageCursor of the next page to fetch" + description="PageCursor of the next page to fetch", + default=None ) class Snapshot(BaseModel, extra="forbid"):