Skip to content
Snippets Groups Projects
Commit 2d9b3131 authored by Sebastian Kunert's avatar Sebastian Kunert Committed by GitHub
Browse files

Skip av-store, make consensus task blocking (#2497)

parent 3cec0400
No related merge requests found
This diff is collapsed.
......@@ -99,7 +99,7 @@ fn build_overseer<'a>(
let network_bridge_metrics: NetworkBridgeMetrics = Metrics::register(registry)?;
let builder = Overseer::builder()
.availability_distribution(DummySubsystem)
.availability_recovery(AvailabilityRecoverySubsystem::with_chunks_only(
.availability_recovery(AvailabilityRecoverySubsystem::with_availability_store_skip(
available_data_req_receiver,
Metrics::register(registry)?,
))
......
......@@ -125,7 +125,7 @@ where
task_manager
.spawn_essential_handle()
.spawn("cumulus-consensus", None, consensus);
.spawn_blocking("cumulus-consensus", None, consensus);
let pov_recovery = PoVRecovery::new(
recovery_handle,
......@@ -218,7 +218,7 @@ where
task_manager
.spawn_essential_handle()
.spawn("cumulus-consensus", None, consensus);
.spawn_blocking("cumulus-consensus", None, consensus);
let pov_recovery = PoVRecovery::new(
recovery_handle,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment