work around windows - no without

This commit is contained in:
Jaremy Creechley 2024-05-20 22:06:43 +03:00
parent 1c969278d7
commit b96328cbee
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -43,8 +43,8 @@ proc prove*[H](
let taskRes = await queue.recvAsync() let taskRes = await queue.recvAsync()
if (let res = queue.release(); res.isErr): if (let res = queue.release(); res.isErr):
error "Error releasing proof queue ", msg = res.error().msg error "Error releasing proof queue ", msg = res.error().msg
without proofRes =? taskRes, err: without proofRes =? taskRes, exc:
return failure(err) return failure(exc)
without proof =? proofRes, err: without proof =? proofRes, err:
return failure(err) return failure(err)