mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
Skip av-store, make consensus task blocking (#2497)
This commit is contained in:
Generated
+281
-280
File diff suppressed because it is too large
Load Diff
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user