This commit is contained in:
Nikolay Kim 2025-03-18 05:25:39 +01:00
parent 367b9760a2
commit bf33b35225

View file

@ -11,7 +11,7 @@ use crate::server::Server;
use crate::service::ServiceFactory;
#[cfg(feature = "ws")]
use crate::ws::{error::WsClientError, WsClient, WsConnection};
use crate::{rt::System, time::Millis, time::Seconds, util::Bytes};
use crate::{rt::System, time::sleep, time::Millis, time::Seconds, util::Bytes};
use super::client::{Client, ClientRequest, ClientResponse, Connector};
use super::error::{HttpError, PayloadError};
@ -247,9 +247,8 @@ where
crate::rt::spawn(async move {
sleep(Millis(75)).await;
tx.send((System::current(), srv, local_addr)).unwrap();
tx.send((system, srv, local_addr)).unwrap();
});
tx.send((system, srv, local_addr)).unwrap();
Ok(())
})
});