mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
wip
This commit is contained in:
parent
367b9760a2
commit
bf33b35225
1 changed files with 2 additions and 3 deletions
|
@ -11,7 +11,7 @@ use crate::server::Server;
|
||||||
use crate::service::ServiceFactory;
|
use crate::service::ServiceFactory;
|
||||||
#[cfg(feature = "ws")]
|
#[cfg(feature = "ws")]
|
||||||
use crate::ws::{error::WsClientError, WsClient, WsConnection};
|
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::client::{Client, ClientRequest, ClientResponse, Connector};
|
||||||
use super::error::{HttpError, PayloadError};
|
use super::error::{HttpError, PayloadError};
|
||||||
|
@ -247,9 +247,8 @@ where
|
||||||
|
|
||||||
crate::rt::spawn(async move {
|
crate::rt::spawn(async move {
|
||||||
sleep(Millis(75)).await;
|
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(())
|
Ok(())
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue