From d151a974e4d5772067f0153f3c0843e1f955b6bc Mon Sep 17 00:00:00 2001 From: Eero Lihavainen Date: Thu, 21 Sep 2023 15:03:18 +0300 Subject: [PATCH] enable offset listing for s3 --- rust/src/storage/s3.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rust/src/storage/s3.rs b/rust/src/storage/s3.rs index b7da2ae4d7..ec5e6a344a 100644 --- a/rust/src/storage/s3.rs +++ b/rust/src/storage/s3.rs @@ -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>> { + self.inner.list_with_offset(prefix, offset).await + } + async fn list_with_delimiter(&self, prefix: Option<&Path>) -> ObjectStoreResult { self.inner.list_with_delimiter(prefix).await }