Skip to content

Commit

Permalink
CI: reduce verbosity in long faucet chain test (#2687)
Browse files Browse the repository at this point in the history
* CI: reduce verbosity in long faucet chain test

* remove debug logs
  • Loading branch information
ma2bd committed Oct 23, 2024
1 parent 779d284 commit 4caeec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/long_faucet_chain_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ on:

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
LINERA_STORAGE_SERVICE: 127.0.0.1:1235
RUST_LOG: warn
RUST_LOG_FORMAT: plain

jobs:
long-faucet-chain-test:
runs-on: ubuntu-latest-16-cores
timeout-minutes: 180
timeout-minutes: 60

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 0 additions & 2 deletions linera-service/src/cli_wrappers/local_net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -515,10 +515,8 @@ impl LocalNet {
let mut client = HealthClient::new(connection);
linera_base::time::timer::sleep(Duration::from_millis(100)).await;
for i in 0..10 {
warn!("Iteration, i={}", i);
linera_base::time::timer::sleep(Duration::from_millis(i * 500)).await;
let result = client.check(HealthCheckRequest::default()).await;
warn!("result={:?}", result);
if result.is_ok() && result.unwrap().get_ref().status() == ServingStatus::Serving {
info!("Successfully started {nickname}");
return Ok(());
Expand Down

0 comments on commit 4caeec5

Please sign in to comment.