Skip to content

Commit

Permalink
forgot about em pesky indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 19, 2024
1 parent 1f65ce4 commit 380b90d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/re_query/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ pub fn cacheable(component_name: re_types::ComponentName) -> bool {
.into()
});

!not_cacheable.contains(&component_name)
!component_name.is_indicator_component() && !not_cacheable.contains(&component_name)
}
3 changes: 1 addition & 2 deletions crates/re_query/src/range/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ use re_types_core::ComponentName;
use re_types_core::SizeBytes;

use crate::{
CacheKey, RangeComponentResults, RangeComponentResultsInner, RangeResults,
Caches, Promise,
CacheKey, Caches, Promise, RangeComponentResults, RangeComponentResultsInner, RangeResults,
};

// ---
Expand Down

0 comments on commit 380b90d

Please sign in to comment.