From dcdc237d5c24522e997b7e74136933ed90b0524c 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 d59fc04d362f..05e42cacd85d 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 @@ -120,7 +120,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 aeb101d27924..c4d26e2b592f 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 @@ -358,7 +358,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.