mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-21 19:40:59 +00:00
jobs-actix: handle storage api change
This commit is contained in:
parent
3045f003b7
commit
cb4124b282
1 changed files with 3 additions and 1 deletions
|
@ -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(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue