Skip to content

Commit

Permalink
Clean up tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Jun 15, 2024
1 parent edb0197 commit db0a827
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ipa-core/src/cli/playbook/ipa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ where

let mut delay = Duration::from_millis(125);
loop {
tracing::info!("Poll helpers for MPC status");
if try_join_all(clients.iter().enumerate().map(|(i, client)| client
.query_status(query_id).map(move |v| v.map_err(|e| format!("Failed to get query status from helper {i}: {e}")))))
.await
Expand All @@ -141,7 +140,6 @@ where
{
break;
}
tracing::info!("Poll helpers for MPC status complete");

sleep(delay).await;
delay = min(Duration::from_secs(5), delay * 2);
Expand Down

0 comments on commit db0a827

Please sign in to comment.