Skip to content

Commit

Permalink
Set a default for next_page
Browse files Browse the repository at this point in the history
  • Loading branch information
jshearer committed Mar 19, 2024
1 parent 9c34927 commit f395ab4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion estuary-cdk/estuary_cdk/capture/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
Expand Down

0 comments on commit f395ab4

Please sign in to comment.