Skip to content

Commit

Permalink
Consistent names
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 25, 2024
1 parent 6f5cbf5 commit 1d0a9a3
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 @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<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 1d0a9a3

Please sign in to comment.