Skip to content

Commit

Permalink
rust: Remove errant async for broadcast_time
Browse files Browse the repository at this point in the history
  • Loading branch information
gasmith committed Feb 7, 2025
1 parent 17e8040 commit 4bda523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/foxglove/src/websocket_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4bda523

Please sign in to comment.