Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mraszyk committed Oct 24, 2024
1 parent e503a56 commit db5e811
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rs/pocket_ic_server/src/state_api/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1295,8 +1295,11 @@ impl ApiState {
let instances = self.instances.read().await;
let mut res = vec![];

println!("total instances: {}", instances.len());
for instance in &*instances {
println!("grabbing instance");
let instance = &*instance.lock().await;
println!("grabbed instance");
match &instance.state {
InstanceState::Busy { state_label, op_id } => {
res.push(format!("Busy({:?}, {:?})", state_label, op_id))
Expand Down

0 comments on commit db5e811

Please sign in to comment.