mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Glommio clippy
This commit is contained in:
parent
a858394855
commit
ccafe7a8be
3 changed files with 10 additions and 8 deletions
|
@ -30,4 +30,4 @@ simdutf8 = { version = "0.1.4", optional = true }
|
|||
serde_test = "1"
|
||||
serde_json = "1"
|
||||
ntex = { version = "1", features = ["tokio"] }
|
||||
ntex-bytes = { version = "*", features = ["mpool"] }
|
||||
ntex-bytes = { path = ".", features = ["mpool"] }
|
||||
|
|
|
@ -203,9 +203,10 @@ impl Future for WriteTask {
|
|||
Poll::Ready(Ok(())) => {
|
||||
let io = this.io.clone();
|
||||
let fut = Box::pin(async move {
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write)
|
||||
.await
|
||||
let fut =
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write);
|
||||
fut.await
|
||||
});
|
||||
*st = Shutdown::Close(fut);
|
||||
continue;
|
||||
|
@ -511,9 +512,10 @@ impl Future for UnixWriteTask {
|
|||
Poll::Ready(Ok(())) => {
|
||||
let io = this.io.clone();
|
||||
let fut = Box::pin(async move {
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write)
|
||||
.await
|
||||
let fut =
|
||||
io.0.borrow()
|
||||
.shutdown(std::net::Shutdown::Write);
|
||||
fut.await
|
||||
});
|
||||
*st = Shutdown::Close(fut);
|
||||
continue;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use std::{cell::RefCell, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};
|
||||
|
||||
thread_local! {
|
||||
static SRUN: RefCell<bool> = RefCell::new(false);
|
||||
static SRUN: RefCell<bool> = const { RefCell::new(false) };
|
||||
static SHANDLERS: Rc<RefCell<Vec<oneshot::Sender<Signal>>>> = Default::default();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue