Skip to content

Commit

Permalink
Merge pull request #1654 from eeroel/fix/offset_listing_in_s3
Browse files Browse the repository at this point in the history
fix: enable offset listing for s3
  • Loading branch information
rtyler authored Sep 21, 2023
2 parents a74589b + d151a97 commit 7d2bb27
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rust/src/storage/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,14 @@ impl ObjectStore for S3StorageBackend {
self.inner.list(prefix).await
}

async fn list_with_offset(
&self,
prefix: Option<&Path>,
offset: &Path,
) -> ObjectStoreResult<BoxStream<'_, ObjectStoreResult<ObjectMeta>>> {
self.inner.list_with_offset(prefix, offset).await
}

async fn list_with_delimiter(&self, prefix: Option<&Path>) -> ObjectStoreResult<ListResult> {
self.inner.list_with_delimiter(prefix).await
}
Expand Down

0 comments on commit 7d2bb27

Please sign in to comment.