diff --git a/polkadot/node/core/av-store/src/lib.rs b/polkadot/node/core/av-store/src/lib.rs index 4905535a21..ca95d777a1 100644 --- a/polkadot/node/core/av-store/src/lib.rs +++ b/polkadot/node/core/av-store/src/lib.rs @@ -507,6 +507,10 @@ where match res { Err(e) => { e.trace(); + + if let Error::Subsystem(SubsystemError::Context(_)) = e { + break; + } } Ok(true) => { tracing::info!(target: LOG_TARGET, "received `Conclude` signal, exiting");