chore: Attempt to get rid of a crash on CI where the runtime isn't used for a drop

This commit is contained in:
Damir Jelić
2025-07-24 15:40:12 +02:00
parent c636ec63f4
commit 06bf487512

View File

@@ -137,8 +137,10 @@ pub fn keys_claiming(c: &mut Criterion) {
move |(machine, runtime, txn_id)| {
runtime.block_on(async {
machine.mark_request_as_sent(txn_id, response).await.unwrap();
drop(machine)
})
});
let _ = runtime.enter();
drop(machine);
},
BatchSize::SmallInput,
)