jobs-actix: handle storage api change

This commit is contained in:
asonix 2024-01-08 16:28:18 -06:00
parent 3045f003b7
commit cb4124b282

View file

@ -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(())
}
}