File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
crates/store/re_grpc_client/src/redap Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub enum ConnectionError {
33
33
UnexpectedBaseUrl ( String ) ,
34
34
35
35
#[ error( "URL {url:?} cannot be loaded as a recording" ) ]
36
- CannotLoadURLAsRecording { url : String } ,
36
+ CannotLoadUrlAsRecording { url : String } ,
37
37
}
38
38
39
39
/// The different schemes supported by Rerun.
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub fn stream_from_redap(
59
59
}
60
60
// TODO(#9058): This should be fix by introducing a `RedapRecordingAddress`.
61
61
RedapAddress :: Catalog { origin } => {
62
- return Err ( ConnectionError :: CannotLoadURLAsRecording {
62
+ return Err ( ConnectionError :: CannotLoadUrlAsRecording {
63
63
url : origin. to_string ( ) ,
64
64
} ) ;
65
65
}
You can’t perform that action at this time.
0 commit comments