mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
94582f45b4
commit
a9f4bdf8b2
2 changed files with 8 additions and 8 deletions
|
@ -248,13 +248,13 @@ where
|
|||
Ok(())
|
||||
})
|
||||
});
|
||||
thread::sleep(std::time::Duration::from_millis(25));
|
||||
// wait for server
|
||||
if std::env::var("GITHUB_ACTIONS") == Ok("true".to_string()) {
|
||||
thread::sleep(std::time::Duration::from_millis(150));
|
||||
}
|
||||
|
||||
let (system, server, addr) = rx.recv().unwrap();
|
||||
|
||||
// wait for server
|
||||
thread::sleep(std::time::Duration::from_millis(50));
|
||||
|
||||
TestServer {
|
||||
addr,
|
||||
system,
|
||||
|
|
|
@ -701,13 +701,13 @@ where
|
|||
Ok(())
|
||||
})
|
||||
});
|
||||
thread::sleep(std::time::Duration::from_millis(25));
|
||||
// wait for server
|
||||
if std::env::var("GITHUB_ACTIONS") == Ok("true".to_string()) {
|
||||
thread::sleep(std::time::Duration::from_millis(150));
|
||||
}
|
||||
|
||||
let (system, server, addr) = rx.recv().unwrap();
|
||||
|
||||
// wait for server
|
||||
thread::sleep(std::time::Duration::from_millis(50));
|
||||
|
||||
let client = {
|
||||
let connector = {
|
||||
#[cfg(feature = "openssl")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue