aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-09-01 16:35:43 +0200
committerAlex Auvolat <alex@adnab.me>2022-09-01 16:35:43 +0200
commit99b532b85bf35b5acf621c229fb991825f3d994c (patch)
treec1bb0e13524c87c7480c361271399c7a5e2b6603 /src/rpc
parente648bf7b69a487ca3f43d4ba607bfc2e354a5832 (diff)
downloadgarage-99b532b85bf35b5acf621c229fb991825f3d994c.tar.gz
garage-99b532b85bf35b5acf621c229fb991825f3d994c.zip
Apply PRIO_SECONDARY to block data transfers
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/rpc_helper.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rpc_helper.rs b/src/rpc/rpc_helper.rs
index e9575261..aa204c5e 100644
--- a/src/rpc/rpc_helper.rs
+++ b/src/rpc/rpc_helper.rs
@@ -18,7 +18,7 @@ use opentelemetry::{
pub use netapp::endpoint::{Endpoint, EndpointHandler, StreamingEndpointHandler};
use netapp::message::IntoReq;
pub use netapp::message::{
- Message as Rpc, OrderTag, Req, RequestPriority, Resp, PRIO_BACKGROUND, PRIO_HIGH, PRIO_NORMAL,
+ Message as Rpc, OrderTag, Req, RequestPriority, Resp, PRIO_BACKGROUND, PRIO_HIGH, PRIO_NORMAL, PRIO_SECONDARY
};
use netapp::peering::fullmesh::FullMeshPeeringStrategy;
pub use netapp::{self, NetApp, NodeID};