diff --git a/ntex-rt/src/lib.rs b/ntex-rt/src/lib.rs index 9f4480a0..e642412d 100644 --- a/ntex-rt/src/lib.rs +++ b/ntex-rt/src/lib.rs @@ -352,10 +352,10 @@ mod neon { } impl Future for Task { - type Output = T; + type Output = Result; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - Pin::new(self.task.as_mut().unwrap()).poll(cx) + Poll::Ready(Ok(ready!(Pin::new(self.task.as_mut().unwrap()).poll(cx)))) } }