mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +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> {
|
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