aboutsummaryrefslogtreecommitdiff
path: root/src/block/manager.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/manager.rs')
-rw-r--r--src/block/manager.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/block/manager.rs b/src/block/manager.rs
index 00438648..a9def3b0 100644
--- a/src/block/manager.rs
+++ b/src/block/manager.rs
@@ -198,7 +198,7 @@ impl BlockManager {
let rpc = self.endpoint.call_streaming(
&node_id,
BlockRpc::GetBlock(*hash, order_tag),
- PRIO_NORMAL,
+ PRIO_NORMAL | PRIO_SECONDARY,
);
tokio::select! {
res = rpc => {
@@ -245,7 +245,7 @@ impl BlockManager {
let rpc = self.endpoint.call_streaming(
&node_id,
BlockRpc::GetBlock(*hash, order_tag),
- PRIO_NORMAL,
+ PRIO_NORMAL | PRIO_SECONDARY,
);
tokio::select! {
res = rpc => {
@@ -336,7 +336,7 @@ impl BlockManager {
&self.endpoint,
&who[..],
put_block_rpc,
- RequestStrategy::with_priority(PRIO_NORMAL)
+ RequestStrategy::with_priority(PRIO_NORMAL | PRIO_SECONDARY)
.with_quorum(self.replication.write_quorum())
.with_timeout(BLOCK_RW_TIMEOUT),
)