Add delay for test server availability, could cause connect race

This commit is contained in:
Nikolay Kim 2025-03-18 05:24:25 +01:00
parent 5621ca1898
commit 367b9760a2
4 changed files with 20 additions and 6 deletions

View file

@ -59,17 +59,19 @@ where
.workers(1)
.disable_signals()
.run();
tx.send((system, local_addr, server))
.expect("Failed to send Server to TestServer");
ntex_rt::spawn(async move {
ntex_util::time::sleep(ntex_util::time::Millis(75)).await;
tx.send((system, local_addr, server))
.expect("Failed to send Server to TestServer");
});
Ok(())
})
});
let (system, addr, server) = rx.recv().unwrap();
// wait for server
thread::sleep(std::time::Duration::from_millis(50));
TestServer {
addr,
server,

View file

@ -1,5 +1,9 @@
# Changes
## [2.12.3] - 2025-03-xx
* http: Add delay for test server availability, could cause connect race
## [2.12.2] - 2025-03-15
* http: Allow to run publish future to completion in case error

View file

@ -244,6 +244,11 @@ where
.workers(1)
.disable_signals()
.run();
crate::rt::spawn(async move {
sleep(Millis(75)).await;
tx.send((System::current(), srv, local_addr)).unwrap();
});
tx.send((system, srv, local_addr)).unwrap();
Ok(())
})

View file

@ -697,7 +697,10 @@ where
.set_tag("test", "WEB-SRV")
.run();
tx.send((System::current(), srv, local_addr)).unwrap();
crate::rt::spawn(async move {
sleep(Millis(75)).await;
tx.send((System::current(), srv, local_addr)).unwrap();
});
Ok(())
})
});