gracefully handle lack of tokio runtime

This commit is contained in:
Pascal Kuthe 2024-04-05 03:25:41 +02:00
parent 7283ef881f
commit 386fa371d7
No known key found for this signature in database
GPG Key ID: D715E8655AE166A6

View File

@ -28,7 +28,10 @@ fn spawn(self) -> mpsc::Sender<Self::Event> {
// so it should only be reached in case of total CPU overload.
// However, a bounded channel is much more efficient so it's nice to use here
let (tx, rx) = mpsc::channel(128);
tokio::spawn(run(self, rx));
// only spawn worker if we are inside runtime to avoid having to spawn a runtime for unrelated unit tests
if tokio::runtime::Handle::try_current().is_ok() {
tokio::spawn(run(self, rx));
}
tx
}
}