This commit is contained in:
Nikolay Kim 2025-03-14 15:06:54 +05:00
parent 94582f45b4
commit a9f4bdf8b2
2 changed files with 8 additions and 8 deletions

View file

@ -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,

View file

@ -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")]