update Cargo.toml

This commit is contained in:
Nikita Sivukhin
2025-11-12 16:14:14 +04:00
parent 2d517f9fd7
commit aa65cfd55d
2 changed files with 12 additions and 1 deletions

View File

@@ -1223,6 +1223,10 @@ pub async fn bootstrap_db_file_v1<C: ProtocolIO, Ctx>(
wait_proto_message::<Ctx, PageData>(coro, &completion, &client.network_stats, &mut bytes)
.await?
{
tracing::info!(
"bootstrap_db_file: received page page_id={}",
page_data.page_id
);
let offset = page_data.page_id * PAGE_SIZE as u64;
let page = decode_page(&header, page_data)?;
if page.len() != PAGE_SIZE {