Skip to content

Commit

Permalink
Fix Cursor interface change + FileBased change at the same time (#34653)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi297 committed Jan 30, 2024
1 parent 05a55f0 commit c26d355
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def create_from_stream(
cursor_field=cursor_field,
logger=logger,
namespace=stream.namespace,
cursor=cursor,
),
stream,
cursor,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@ def observe(self, record: Record) -> None:
def close_partition(self, partition: Partition) -> None:
return None

def ensure_at_least_one_state_emitted(self) -> None:
return None

def set_pending_partitions(self, partitions: Iterable[Partition]) -> None:
return None

0 comments on commit c26d355

Please sign in to comment.