From e6a25db7eea3a39baa6c95fec20109d033242930 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 10 Mar 2025 12:42:59 +0500 Subject: [PATCH] Fix neon compat --- ntex-rt/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)))) } }