Skip to content

Commit

Permalink
renaming leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
zehiko committed Jan 17, 2025
1 parent 14c8fc9 commit 3a2a8e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/store/re_grpc_client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ pub fn store_info_from_catalog_chunk(
.components()
.find(|(f, _)| f.name() == CATALOG_APP_ID_FIELD_NAME)
.ok_or(StreamError::ChunkError(re_chunk::ChunkError::Malformed {
reason: "no {APP_ID_FIELD_NAME} field found".to_owned(),
reason: "no {CATALOG_APP_ID_FIELD_NAME} field found".to_owned(),
}))?;
let app_id = data
.downcast_array_ref::<arrow::array::StringArray>()
Expand All @@ -301,7 +301,7 @@ pub fn store_info_from_catalog_chunk(
.components()
.find(|(f, _)| f.name() == CATALOG_START_TIME_FIELD_NAME)
.ok_or(StreamError::ChunkError(re_chunk::ChunkError::Malformed {
reason: "no {START_TIME_FIELD}} field found".to_owned(),
reason: "no {CATALOG_START_TIME_FIELD_NAME}} field found".to_owned(),
}))?;
let start_time = data
.downcast_array_ref::<arrow::array::TimestampNanosecondArray>()
Expand Down

0 comments on commit 3a2a8e4

Please sign in to comment.