Skip to content

Commit e68639a

Browse files
committed
increase timeout because of slow github workers
1 parent a4cf625 commit e68639a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/blockscout-service-launcher/src/test_server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ where
4545
}
4646
};
4747
// Wait for the server to start
48-
if (timeout(Duration::from_secs(10), wait_health_check).await).is_err() {
48+
if (timeout(Duration::from_secs(30), wait_health_check).await).is_err() {
4949
match timeout(Duration::from_secs(1), server_handle).await {
5050
Ok(Ok(result)) => {
5151
panic!("Server terminated with: {result:?}")
@@ -54,7 +54,7 @@ where
5454
panic!("Server start terminated with exit error")
5555
}
5656
Err(_) => {
57-
panic!("Server did not start in time, but did not terminate");
57+
panic!("Server did not start in time, and did not terminate");
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)