@ -31,8 +31,6 @@ fn main() {
let runtime_thread = std::thread::Builder::new()
// Run on the system core
.affinity(1)
// Use a bigger stack size. Default is 0x1000 but we'd easily overflow that.
.stack_size(0x200000)
.spawn(move || {
runtime.block_on(async move {
let mut wake_time = tokio::time::Instant::now() + Duration::from_secs(1);
@ -124,7 +124,6 @@ mod tests {
// thread prints to the console, which is not captured by the default test
// harness and prints even when the test passes.
std::thread::Builder::new()
.stack_size(0x20_0000)
.spawn(|| {
let map: HashMap<i32, String> = HashMap::from_iter([
(1_i32, String::from("123")),