Skip to content

Commit

Permalink
address CR.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachelint committed Jun 20, 2023
1 parent 6c35486 commit c590027
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions analytic_engine/src/manifest/details.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,6 @@ where
}

if has_logs {
debug!(
"Manifest recover with only logs, table_id:{}, space_id:{}",
self.table_id, self.space_id
);
Ok(Some(Snapshot {
end_seq: latest_seq,
data: manifest_data_builder.build(),
Expand Down Expand Up @@ -494,7 +490,7 @@ impl Manifest for ManifestImpl {
}

async fn recover(&self, load_req: &LoadRequest) -> GenericResult<()> {
info!("Manifest recover begin, request:{:?}", load_req);
info!("Manifest recover begin, request:{load_req:?}");

// Load table meta snapshot from storage.
let location = WalLocation::new(load_req.shard_id as u64, load_req.table_id.as_u64());
Expand Down Expand Up @@ -527,7 +523,7 @@ impl Manifest for ManifestImpl {
self.table_meta_set.apply_edit_to_table(request)?;
}

info!("Manifest recover finish, request:{:?}", load_req);
info!("Manifest recover finish, request:{load_req:?}");

Ok(())
}
Expand Down

0 comments on commit c590027

Please sign in to comment.