We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc9bc2 commit f15fdaeCopy full SHA for f15fdae
crates/core/src/bc_protocol/talk.rs
@@ -410,7 +410,8 @@ impl BcCamera {
410
// Chunks are still being played, while talk_stop will interrupt them. Wait until we expect
411
// the stream to end (+ and extra 100ms) before issuing talk_stop.
412
let remaining_stream_duration = expected_stream_end - std::time::Instant::now();
413
- std::thread::sleep(remaining_stream_duration + std::time::Duration::from_secs_f32(0.1));
+ tokio::time::sleep(remaining_stream_duration + std::time::Duration::from_secs_f32(0.1))
414
+ .await;
415
416
self.talk_stop().await?;
417
0 commit comments