diff --git a/crates/re_space_view_spatial/src/visualizers/entity_iterator.rs b/crates/re_space_view_spatial/src/visualizers/entity_iterator.rs index 9e34213dce07..06b5d31b3cca 100644 --- a/crates/re_space_view_spatial/src/visualizers/entity_iterator.rs +++ b/crates/re_space_view_spatial/src/visualizers/entity_iterator.rs @@ -183,7 +183,7 @@ macro_rules! impl_process_archetype { space_view_class_identifier: view_ctx.space_view_class_identifier(), }; - ctx.entity_db.query_caches().[]::( + match ctx.entity_db.query_caches().[]::( ctx.app_options.experimental_primary_caching_latest_at, ctx.app_options.experimental_primary_caching_range, ctx.entity_db.store(), @@ -212,7 +212,15 @@ macro_rules! impl_process_archetype { ); } } - )?; + ) { + Ok(_) | Err(QueryError::PrimaryNotFound(_)) => {} + Err(err) => { + re_log::error_once!( + "Unexpected error querying {:?}: {err}", + &data_result.entity_path + ); + } + } } Ok(())