mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 16:15:03 +00:00
bump timeout for CI
This commit is contained in:
parent
6bcc1b8b9e
commit
9304cb0263
@ -227,7 +227,7 @@ impl Drop for Server {
|
||||
}
|
||||
|
||||
fn recv_timeout(receiver: &Receiver<RawMessage>) -> Option<RawMessage> {
|
||||
let timeout = Duration::from_secs(50);
|
||||
let timeout = Duration::from_secs(120);
|
||||
select! {
|
||||
recv(receiver) -> msg => msg.ok(),
|
||||
recv(after(timeout)) -> _ => panic!("timed out"),
|
||||
|
Loading…
Reference in New Issue
Block a user