Browse Source

client: disable tokio lifo slot optimization

Justin Tracey 2 years ago
parent
commit
9591c7ef6a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/bin/mgen-client.rs

+ 1 - 0
src/bin/mgen-client.rs

@@ -526,6 +526,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
     tokio::runtime::Builder::new_multi_thread()
         .worker_threads(2)
         .enable_all()
+        .disable_lifo_slot()
         .build()
         .unwrap()
         .block_on(main_worker())