Dont block tokio reactor waiting on user input
authorMatt Corallo <git@bluematt.me>
Tue, 22 Aug 2023 20:59:23 +0000 (20:59 +0000)
committerMatt Corallo <git@bluematt.me>
Tue, 22 Aug 2023 23:25:57 +0000 (23:25 +0000)
When we moved the CLI input reading into a `tokio::select`, we
ended up blocking the tokio reactor by reading from stdin in a
standard tokio future. Instead, we need to let tokio know that
we're running a largely-blocking task.


No differences found