We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4cf625 commit e68639aCopy full SHA for e68639a
libs/blockscout-service-launcher/src/test_server.rs
@@ -45,7 +45,7 @@ where
45
}
46
};
47
// Wait for the server to start
48
- if (timeout(Duration::from_secs(10), wait_health_check).await).is_err() {
+ if (timeout(Duration::from_secs(30), wait_health_check).await).is_err() {
49
match timeout(Duration::from_secs(1), server_handle).await {
50
Ok(Ok(result)) => {
51
panic!("Server terminated with: {result:?}")
@@ -54,7 +54,7 @@ where
54
panic!("Server start terminated with exit error")
55
56
Err(_) => {
57
- panic!("Server did not start in time, but did not terminate");
+ panic!("Server did not start in time, and did not terminate");
58
59
60
0 commit comments