Skip to content

Commit 4e55764

Browse files
committed
liiiints
1 parent fbc049c commit 4e55764

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/store/re_grpc_client/src/redap/address.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub enum ConnectionError {
3333
UnexpectedBaseUrl(String),
3434

3535
#[error("URL {url:?} cannot be loaded as a recording")]
36-
CannotLoadURLAsRecording { url: String },
36+
CannotLoadUrlAsRecording { url: String },
3737
}
3838

3939
/// The different schemes supported by Rerun.

crates/store/re_grpc_client/src/redap/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub fn stream_from_redap(
5959
}
6060
// TODO(#9058): This should be fix by introducing a `RedapRecordingAddress`.
6161
RedapAddress::Catalog { origin } => {
62-
return Err(ConnectionError::CannotLoadURLAsRecording {
62+
return Err(ConnectionError::CannotLoadUrlAsRecording {
6363
url: origin.to_string(),
6464
});
6565
}

0 commit comments

Comments
 (0)