mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
wip
This commit is contained in:
parent
77875b46b2
commit
94582f45b4
2 changed files with 4 additions and 2 deletions
|
@ -8,10 +8,10 @@ use coo_kie::{Cookie, CookieJar};
|
|||
use crate::io::Filter;
|
||||
use crate::io::Io;
|
||||
use crate::server::Server;
|
||||
use crate::service::ServiceFactory;
|
||||
#[cfg(feature = "ws")]
|
||||
use crate::ws::{error::WsClientError, WsClient, WsConnection};
|
||||
use crate::{rt::System, service::ServiceFactory};
|
||||
use crate::{time::Millis, time::Seconds, util::Bytes};
|
||||
use crate::{rt::System, time::Millis, time::Seconds, util::Bytes};
|
||||
|
||||
use super::client::{Client, ClientRequest, ClientResponse, Connector};
|
||||
use super::error::{HttpError, PayloadError};
|
||||
|
@ -248,6 +248,7 @@ where
|
|||
Ok(())
|
||||
})
|
||||
});
|
||||
thread::sleep(std::time::Duration::from_millis(25));
|
||||
|
||||
let (system, server, addr) = rx.recv().unwrap();
|
||||
|
||||
|
|
|
@ -701,6 +701,7 @@ where
|
|||
Ok(())
|
||||
})
|
||||
});
|
||||
thread::sleep(std::time::Duration::from_millis(25));
|
||||
|
||||
let (system, server, addr) = rx.recv().unwrap();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue