Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zehiko committed Oct 14, 2024
1 parent 436f9e3 commit 1fcfd83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions crates/store/re_remote_store_types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ pub mod v0 {
.ok_or(TypeConversionError::MissingField("timeline"))?
.name;

// TODO(cmc): QueryExpression::filtered_index gotta be a selector
#[allow(clippy::match_same_arms)]
let timeline = match timeline_name.as_str() {
"log_time" => Self::new_temporal(timeline_name),
Expand Down
4 changes: 2 additions & 2 deletions crates/store/re_ws_comms/src/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{ops::ControlFlow, time::Duration};
use std::ops::ControlFlow;

use ewebsock::{WsEvent, WsMessage};

Expand All @@ -16,7 +16,7 @@ pub fn viewer_to_server(
// We set a very high limit, because we should be able to trust the server.
// See https://github.com/rerun-io/rerun/issues/5268 for more
max_incoming_frame_size: 2 * gigs,
delay_blocking: Duration::from_millis(10),
..ewebsock::Options::default()
};

ewebsock::ws_receive(
Expand Down

0 comments on commit 1fcfd83

Please sign in to comment.