diff --git a/ntex-net/CHANGES.md b/ntex-net/CHANGES.md index b305c885..a082b258 100644 --- a/ntex-net/CHANGES.md +++ b/ntex-net/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [2.5.5] - 2025-03-xx +## [2.5.5] - 2025-03-17 * Add check for required io-uring opcodes diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index 520669f7..8f75d422 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-net" -version = "2.5.4" +version = "2.5.5" authors = ["ntex contributors "] description = "ntexwork utils for ntex framework" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-net/src/rt_uring/io.rs b/ntex-net/src/rt_uring/io.rs index 7a22f66c..2f111ad7 100644 --- a/ntex-net/src/rt_uring/io.rs +++ b/ntex-net/src/rt_uring/io.rs @@ -54,19 +54,7 @@ enum Status { async fn run(ctl: StreamCtl, context: IoContext) { // Handle io readiness let st = poll_fn(|cx| { - let read_st = context.poll_read_ready(cx); - let write_st = context.poll_write_ready(cx); - - // log::debug!( - // "{}: io ctl read: {:?} write: {:?}, flags: {:?}", - // context.tag(), - // read_st, - // write_st, - // context.flags() - // ); - - //let read = match context.poll_read_ready(cx) { - let read = match read_st { + let read = match context.poll_read_ready(cx) { Poll::Ready(ReadStatus::Ready) => { ctl.resume_read(); Poll::Pending @@ -78,8 +66,7 @@ async fn run(ctl: StreamCtl, context: IoContext) { } }; - // let write = match context.poll_write_ready(cx) { - let write = match write_st { + let write = match context.poll_write_ready(cx) { Poll::Ready(WriteStatus::Ready) => { ctl.resume_write(); Poll::Pending