runtime: add better error message when spawning blocking threads (#4398)

This commit is contained in:
Matthew Pomes
2022-01-12 19:49:57 +01:00
committed by GitHub
parent e255a265d3
commit 089eeae24b
+1 -1
View File
@@ -244,7 +244,7 @@ impl Spawner {
rt.blocking_spawner.inner.run(id); rt.blocking_spawner.inner.run(id);
drop(shutdown_tx); drop(shutdown_tx);
}) })
.unwrap() .expect("OS can't spawn a new worker thread")
} }
} }