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 d59fc04d362f1..05e42cacd85de 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 aeb101d279240..c4d26e2b592f3 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.