From a4b009a4977fb5a710a1f641f47d5b94a26ea8b7 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Wed, 14 Jun 2023 18:40:21 -0700 Subject: [PATCH] Update test-app sound --- crates/live_kit_client/examples/test_app.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/crates/live_kit_client/examples/test_app.rs b/crates/live_kit_client/examples/test_app.rs index 39511d95a268ef69249fe2c2203ec7d8b06ef119..8efcf6ff49b610917dfb371fa37925ebb7939d74 100644 --- a/crates/live_kit_client/examples/test_app.rs +++ b/crates/live_kit_client/examples/test_app.rs @@ -72,9 +72,8 @@ fn main() { panic!("unexpected message"); } - let res = room_b.remote_audio_tracks("test-participant-1")[0].start().await; - println!("Attempting to start: {:?}", res); - let timer = cx.background().timer(Duration::from_secs(10)); + println!("Pausing for 5 seconds to test audio, make some noise!"); + let timer = cx.background().timer(Duration::from_secs(5)); timer.await; let remote_audio_track = room_b