From 4bda523c3f834e6447564b8b35f76be544cf14ba Mon Sep 17 00:00:00 2001 From: Greg Smith Date: Fri, 7 Feb 2025 08:21:54 -0800 Subject: [PATCH] rust: Remove errant async for broadcast_time --- rust/foxglove/src/websocket_server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/foxglove/src/websocket_server.rs b/rust/foxglove/src/websocket_server.rs index efaf5fb6..a4f65777 100644 --- a/rust/foxglove/src/websocket_server.rs +++ b/rust/foxglove/src/websocket_server.rs @@ -191,7 +191,7 @@ impl WebSocketServerBlockingHandle { /// Publishes the current server timestamp to all clients. #[doc(hidden)] #[cfg(feature = "unstable")] - pub async fn broadcast_time(&self, timestamp_nanos: u64) { + pub fn broadcast_time(&self, timestamp_nanos: u64) { self.0 .runtime() .block_on(self.0.broadcast_time(timestamp_nanos))