Skip to content

Commit

Permalink
web shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Dec 2, 2023
1 parent a2b7378 commit a5f8444
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/re_arrow_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ ahash.workspace = true
arrow2 = { workspace = true, features = ["compute_concatenate"] }
document-features.workspace = true
indent.workspace = true
instant = "0.1"
itertools = { workspace = true }
nohash-hasher.workspace = true
once_cell.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion crates/re_arrow_store/src/store_gc.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::{collections::BTreeMap, time::Duration};

use ahash::{HashMap, HashSet};
use instant::Instant;

use nohash_hasher::IntMap;
use re_log_types::{
Expand Down Expand Up @@ -248,7 +249,7 @@ impl DataStore {
..
} = self;

let now = std::time::Instant::now();
let now = Instant::now();
for (&row_id, (timepoint, entity_path_hash)) in &metadata_registry.registry {
if protected_rows.contains(&row_id) {
batch_is_protected = true;
Expand Down

0 comments on commit a5f8444

Please sign in to comment.