mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
wip
This commit is contained in:
parent
ccafe7a8be
commit
ac7f03fd1b
1 changed files with 8 additions and 8 deletions
|
@ -202,11 +202,11 @@ impl Future for WriteTask {
|
|||
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
||||
Poll::Ready(Ok(())) => {
|
||||
let io = this.io.clone();
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
let fut = Box::pin(async move {
|
||||
let fut =
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write);
|
||||
fut.await
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write)
|
||||
.await;
|
||||
});
|
||||
*st = Shutdown::Close(fut);
|
||||
continue;
|
||||
|
@ -511,11 +511,11 @@ impl Future for UnixWriteTask {
|
|||
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
||||
Poll::Ready(Ok(())) => {
|
||||
let io = this.io.clone();
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
let fut = Box::pin(async move {
|
||||
let fut =
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write);
|
||||
fut.await
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write)
|
||||
.await
|
||||
});
|
||||
*st = Shutdown::Close(fut);
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue