Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: peerdas - partially downloaded batch #7354

Open
wants to merge 1 commit into
base: peerDAS
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/beacon-node/src/sync/range/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,13 @@ export class SyncChain {
if (hasPostDenebBlocks) {
Object.assign(downloadInfo, {blobs, dataColumns});
}
this.logger.debug("Downloaded batch", {id: this.logId, ...batch.getMetadata(), ...downloadInfo, peer});
this.logger.debug("Fully downloaded batch", {id: this.logId, ...batch.getMetadata(), ...downloadInfo, peer});
this.triggerBatchProcessor();
} else {
this.logger.debug("Partially downloaded batch", {id: this.logId, ...batch.getMetadata(), peer});
const pendingDataColumns = res.result.pendingDataColumns?.join(",");
this.logger.debug("Partially downloaded batch", {id: this.logId, ...batch.getMetadata(), pendingDataColumns, peer});
// the flow will continue to call triggerBatchDownloader() below
}
this.triggerBatchProcessor();
} else {
this.logger.verbose("Batch download error", {id: this.logId, ...batch.getMetadata()}, res.err);
batch.downloadingError(); // Throws after MAX_DOWNLOAD_ATTEMPTS
Expand Down
Loading