Skip to content

Commit

Permalink
Consistent names
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 29, 2024
1 parent 4789721 commit dcdc237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<RecordingId>,
pub recording_id: ::core::option::Option<RecordingId>,
}
/// 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.
Expand Down

0 comments on commit dcdc237

Please sign in to comment.