From cb4124b282dcdb6d3be831c8c76a1d113f48d400 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 8 Jan 2024 16:28:18 -0600 Subject: [PATCH] jobs-actix: handle storage api change --- jobs-actix/src/storage.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jobs-actix/src/storage.rs b/jobs-actix/src/storage.rs index 8077e3d..1988de2 100644 --- a/jobs-actix/src/storage.rs +++ b/jobs-actix/src/storage.rs @@ -37,6 +37,8 @@ where } async fn complete(&self, ret: ReturnJobInfo) -> Result<(), Error> { - Ok(self.0.complete(ret).await?) + self.0.complete(ret).await?; + + Ok(()) } }