From 4594e068dbba3d3d704728449fc6ccaaadaa82f1 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 23 Apr 2024 10:35:43 +0200 Subject: PUT seems to work --- aero-user/src/storage/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aero-user/src/storage/mod.rs') diff --git a/aero-user/src/storage/mod.rs b/aero-user/src/storage/mod.rs index f5eb8d3..527765f 100644 --- a/aero-user/src/storage/mod.rs +++ b/aero-user/src/storage/mod.rs @@ -159,7 +159,7 @@ pub trait IStore { async fn row_poll(&self, value: &RowRef) -> Result; async fn blob_fetch(&self, blob_ref: &BlobRef) -> Result; - async fn blob_insert(&self, blob_val: BlobVal) -> Result<(), StorageError>; + async fn blob_insert(&self, blob_val: BlobVal) -> Result; async fn blob_copy(&self, src: &BlobRef, dst: &BlobRef) -> Result<(), StorageError>; async fn blob_list(&self, prefix: &str) -> Result, StorageError>; async fn blob_rm(&self, blob_ref: &BlobRef) -> Result<(), StorageError>; -- cgit v1.2.3