From 1d0a9a327b549e3a24a1ca315a1476e032864081 Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Fri, 25 Oct 2024 14:36:35 -0400 Subject: [PATCH] Consistent names --- .../re_remote_store_types/proto/rerun/v0/remote_store.proto | 2 +- .../store/re_remote_store_types/src/v0/rerun.remote_store.v0.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/store/re_remote_store_types/proto/rerun/v0/remote_store.proto b/crates/store/re_remote_store_types/proto/rerun/v0/remote_store.proto index 74a17dc0b34a..2ea0e62f4367 100644 --- a/crates/store/re_remote_store_types/proto/rerun/v0/remote_store.proto +++ b/crates/store/re_remote_store_types/proto/rerun/v0/remote_store.proto @@ -113,7 +113,7 @@ enum RecordingType { // ----------------- FetchRecording ----------------- message FetchRecordingRequest { - RecordingId id = 1; + RecordingId recording_id = 1; } // TODO(jleibs): Eventually this becomes either query-mediated in some way, but for now diff --git a/crates/store/re_remote_store_types/src/v0/rerun.remote_store.v0.rs b/crates/store/re_remote_store_types/src/v0/rerun.remote_store.v0.rs index 26ecf3e1a452..36d541b707cf 100644 --- a/crates/store/re_remote_store_types/src/v0/rerun.remote_store.v0.rs +++ b/crates/store/re_remote_store_types/src/v0/rerun.remote_store.v0.rs @@ -350,7 +350,7 @@ pub struct RecordingInfo { #[derive(Clone, PartialEq, ::prost::Message)] pub struct FetchRecordingRequest { #[prost(message, optional, tag = "1")] - pub id: ::core::option::Option, + pub recording_id: ::core::option::Option, } /// TODO(jleibs): Eventually this becomes either query-mediated in some way, but for now /// it's useful to be able to just get back the whole RRD somehow.