diff --git a/rust/vectordb/src/io/object_store.rs b/rust/vectordb/src/io/object_store.rs index 6258cc04..a56b9243 100644 --- a/rust/vectordb/src/io/object_store.rs +++ b/rust/vectordb/src/io/object_store.rs @@ -125,11 +125,11 @@ impl ObjectStore for MirroringObjectStore { } async fn list(&self, prefix: Option<&Path>) -> Result>> { - self.list(prefix).await + self.primary.list(prefix).await } async fn list_with_delimiter(&self, prefix: Option<&Path>) -> Result { - self.list_with_delimiter(prefix).await + self.primary.list_with_delimiter(prefix).await } async fn copy(&self, from: &Path, to: &Path) -> Result<()> {