Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
fix old round params
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Steiner committed Nov 18, 2020
1 parent beec792 commit a225ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/e2e/src/bin/test_case_1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ async fn run(mut env: TestEnvironment) -> anyhow::Result<()> {
info!("wait until clients are ready");
let _ = tokio::join!(
utils::wait_until_coordinator_is_ready(&mut api_client),
utils::wait_until_influxdb_is_ready(&influx_client)
utils::wait_until_influxdb_is_ready(&influx_client),
utils::wait_until_phase(&influx_client, PhaseName::Sum)
);

////////////////////////////////////////////////////////////////////////////////////////////////
Expand All @@ -60,7 +61,6 @@ async fn run(mut env: TestEnvironment) -> anyhow::Result<()> {
info!("Round: {}", round);

let mut runner = test_client_builder.build_clients().await?;
utils::wait_until_phase(&influx_client, PhaseName::Sum).await;
info!("run sum clients...");
runner.run_sum_clients().await?;
utils::wait_until_phase(&influx_client, PhaseName::Update).await;
Expand Down

0 comments on commit a225ea9

Please sign in to comment.