Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

make runtime API and chain API subsystems blocking too #2526

Merged
1 commit merged into from Feb 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions node/overseer/src/lib.rs
Expand Up @@ -1557,7 +1557,7 @@ where
all_subsystems.runtime_api,
&metrics,
&mut seed,
TaskKind::Regular,
TaskKind::Blocking,
)?;

let availability_store_subsystem = spawn(
Expand Down Expand Up @@ -1587,7 +1587,7 @@ where
all_subsystems.chain_api,
&metrics,
&mut seed,
TaskKind::Regular,
TaskKind::Blocking,
)?;

let collation_generation_subsystem = spawn(
Expand Down