updated test and fixed rpc error

This commit is contained in:
Maxime Van Hees
2025-10-20 13:11:44 +02:00
parent 483ccb2ba8
commit 45d8e306fb
3 changed files with 3 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ async fn setup_server() -> (ServerProcessGuard, u16) {
// Give the server time to build and start (cargo run may compile first)
// Increase significantly to accommodate first-time dependency compilation in CI.
std::thread::sleep(Duration::from_millis(60000));
std::thread::sleep(Duration::from_millis(5000));
(guard, port)
}