Skip to content

Commit

Permalink
shut down test client on close
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelatkinson committed Oct 4, 2024
1 parent 97b52f3 commit e81edbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/spec/unified_runner/operation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2182,7 +2182,7 @@ impl TestOperation for Close {
Entity::Client(_) => {
let client = entities.get_mut(id).unwrap().as_mut_client();
let closed_client_topology_id = client.topology_id;
client.client = None;
client.client.take().unwrap().shutdown().immediate(true).await;

let mut entities_to_remove = vec![];
for (key, value) in entities.iter() {
Expand Down

0 comments on commit e81edbb

Please sign in to comment.