Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy-fdu committed Sep 18, 2023
1 parent cab3820 commit ab4e222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/storage/src/hummock/sstable/sstable_object_id_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ impl GetObjectId for SharedComapctorObjectIdManager {
tracing::warn!("The pre-allocated object ids are used up, and new object id are obtained through RPC.");
let request = GetNewSstIdsRequest { number: 10 };
match core.client.get_new_sst_ids(request).await {
Ok(reponse) => {
let resp = reponse.into_inner();
Ok(response) => {
let resp = response.into_inner();
let start_id = resp.start_id;
core.output_object_ids.extend((start_id + 1)..resp.end_id);
Ok(start_id)
Expand Down

0 comments on commit ab4e222

Please sign in to comment.