more fixes

This commit is contained in:
Nikolay Kim 2024-03-06 19:11:42 +05:00
parent 706511c15c
commit cb9a449ceb
6 changed files with 17 additions and 12 deletions

View file

@ -1,4 +1,5 @@
//! Framed transport dispatcher //! Framed transport dispatcher
#![allow(clippy::let_underscore_future)]
use std::{cell::Cell, future, pin::Pin, rc::Rc, task::Context, task::Poll}; use std::{cell::Cell, future, pin::Pin, rc::Rc, task::Context, task::Poll};
use ntex_bytes::Pool; use ntex_bytes::Pool;
@ -341,7 +342,7 @@ where
// call service // call service
let shared = slf.shared.clone(); let shared = slf.shared.clone();
shared.inflight.set(shared.inflight.get() + 1); shared.inflight.set(shared.inflight.get() + 1);
spawn(async move { let _ = spawn(async move {
let result = shared.service.call(item).await; let result = shared.service.call(item).await;
shared.handle_result(result, &shared.io); shared.handle_result(result, &shared.io);
}); });
@ -365,7 +366,7 @@ where
// call service // call service
let shared = slf.shared.clone(); let shared = slf.shared.clone();
shared.inflight.set(shared.inflight.get() + 1); shared.inflight.set(shared.inflight.get() + 1);
spawn(async move { let _ = spawn(async move {
let result = shared.service.call(item).await; let result = shared.service.call(item).await;
shared.handle_result(result, &shared.io); shared.handle_result(result, &shared.io);
}); });

View file

@ -1,4 +1,5 @@
//! utilities and helpers for testing //! utilities and helpers for testing
#![allow(clippy::let_underscore_future)]
use std::future::{poll_fn, Future}; use std::future::{poll_fn, Future};
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use std::task::{ready, Context, Poll, Waker}; use std::task::{ready, Context, Poll, Waker};
@ -355,11 +356,11 @@ impl IoStream for IoTest {
fn start(self, read: ReadContext, write: WriteContext) -> Option<Box<dyn Handle>> { fn start(self, read: ReadContext, write: WriteContext) -> Option<Box<dyn Handle>> {
let io = Rc::new(self); let io = Rc::new(self);
ntex_util::spawn(ReadTask { let _ = ntex_util::spawn(ReadTask {
io: io.clone(), io: io.clone(),
state: read, state: read,
}); });
ntex_util::spawn(WriteTask { let _ = ntex_util::spawn(WriteTask {
io: io.clone(), io: io.clone(),
state: write, state: write,
st: IoWriteState::Processing(None), st: IoWriteState::Processing(None),

View file

@ -127,7 +127,8 @@ pub(crate) fn register(timeout: Seconds, io: &IoRef) -> TimerHandle {
if !timer.running.get() { if !timer.running.get() {
timer.running.set(true); timer.running.set(true);
spawn(async move { #[allow(clippy::let_underscore_future)]
let _ = spawn(async move {
let guard = TimerGuard; let guard = TimerGuard;
loop { loop {
sleep(SEC).await; sleep(SEC).await;

View file

@ -1,3 +1,4 @@
#![allow(clippy::let_underscore_future)]
use std::any::{Any, TypeId}; use std::any::{Any, TypeId};
use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::atomic::{AtomicUsize, Ordering};
use std::task::{Context, Poll}; use std::task::{Context, Poll};
@ -103,7 +104,7 @@ impl Arbiter {
crate::block_on(async move { crate::block_on(async move {
// start arbiter controller // start arbiter controller
crate::spawn(ArbiterController { let _ = crate::spawn(ArbiterController {
stop: Some(stop), stop: Some(stop),
rx: Box::pin(arb_rx), rx: Box::pin(arb_rx),
}); });
@ -268,7 +269,7 @@ impl Future for ArbiterController {
return Poll::Ready(()); return Poll::Ready(());
} }
ArbiterCommand::Execute(fut) => { ArbiterCommand::Execute(fut) => {
crate::spawn(fut); let _ = crate::spawn(fut);
} }
ArbiterCommand::ExecuteFn(f) => { ArbiterCommand::ExecuteFn(f) => {
f.call_box(); f.call_box();

View file

@ -1,3 +1,4 @@
#![allow(clippy::let_underscore_future)]
use std::{cell::RefCell, future::Future, io, rc::Rc}; use std::{cell::RefCell, future::Future, io, rc::Rc};
use async_channel::unbounded; use async_channel::unbounded;
@ -159,8 +160,8 @@ where
let result = Rc::new(RefCell::new(None)); let result = Rc::new(RefCell::new(None));
let result_inner = result.clone(); let result_inner = result.clone();
crate::block_on(Box::pin(async move { crate::block_on(Box::pin(async move {
crate::spawn(arb); let _ = crate::spawn(arb);
crate::spawn(arb_controller); let _ = crate::spawn(arb_controller);
if let Err(e) = f() { if let Err(e) = f() {
*result_inner.borrow_mut() = Some(Err(e)); *result_inner.borrow_mut() = Some(Err(e));
} else { } else {

View file

@ -1,7 +1,7 @@
//! Time wheel based timer service. //! Time wheel based timer service.
//! //!
//! Inspired by linux kernel timers system //! Inspired by linux kernel timers system
#![allow(arithmetic_overflow)] #![allow(arithmetic_overflow, clippy::let_underscore_future)]
use std::cell::{Cell, RefCell}; use std::cell::{Cell, RefCell};
use std::time::{Duration, Instant, SystemTime}; use std::time::{Duration, Instant, SystemTime};
use std::{cmp::max, future::Future, mem, pin::Pin, rc::Rc, task, task::Poll}; use std::{cmp::max, future::Future, mem, pin::Pin, rc::Rc, task, task::Poll};
@ -611,7 +611,7 @@ impl TimerDriver {
timer.inner.borrow_mut().driver_sleep = timer.inner.borrow_mut().driver_sleep =
Delay::new(Duration::from_millis(timer.next_expiry_ms())); Delay::new(Duration::from_millis(timer.next_expiry_ms()));
crate::spawn(TimerDriver(timer)); let _ = crate::spawn(TimerDriver(timer));
} }
} }
@ -676,7 +676,7 @@ impl LowresTimerDriver {
timer.flags.set(flags); timer.flags.set(flags);
timer.inner.borrow_mut().lowres_driver_sleep = Delay::new(LOWRES_RESOLUTION); timer.inner.borrow_mut().lowres_driver_sleep = Delay::new(LOWRES_RESOLUTION);
crate::spawn(LowresTimerDriver(timer)); let _ = crate::spawn(LowresTimerDriver(timer));
} }
} }