Skip to content

Commit

Permalink
Demote from error!() QuorumStore CouldNotGetData (#12522)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos authored Mar 15, 2024
1 parent 89da6d1 commit 3246c4a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions consensus/src/pipeline/buffer_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ use aptos_consensus_types::{
common::Author, pipeline::commit_decision::CommitDecision, pipelined_block::PipelinedBlock,
};
use aptos_crypto::HashValue;
use aptos_executor_types::ExecutorError;
use aptos_logger::prelude::*;
use aptos_network::protocols::{rpc::error::RpcError, wire::handshake::v1::ProtocolId};
use aptos_reliable_broadcast::{DropGuard, ReliableBroadcast};
Expand Down Expand Up @@ -439,6 +440,10 @@ impl BufferManager {

let executed_blocks = match inner {
Ok(result) => result,
Err(ExecutorError::CouldNotGetData) => {
warn!("Execution error - CouldNotGetData");
return;
},
Err(e) => {
error!("Execution error {:?}", e);
return;
Expand Down

0 comments on commit 3246c4a

Please sign in to comment.