From 95666c30d14cb8dc5eb451db9c1c4d0a86bc033e Mon Sep 17 00:00:00 2001 From: "NG (Graham)" Date: Thu, 29 May 2025 22:10:21 -0400 Subject: [PATCH] Add new message flags parameter to op modifier --- rc_core/src/polariton/svelto_uuid_copy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc_core/src/polariton/svelto_uuid_copy.rs b/rc_core/src/polariton/svelto_uuid_copy.rs index 65cc5a6..fa52f05 100644 --- a/rc_core/src/polariton/svelto_uuid_copy.rs +++ b/rc_core/src/polariton/svelto_uuid_copy.rs @@ -7,7 +7,7 @@ impl OpIdCopy { } impl OperationModifier for OpIdCopy { - fn after(&self, req: &mut polariton::operation::OperationRequest, resp: &mut polariton::operation::OperationResponse) { + fn after(&self, req: &mut polariton::operation::OperationRequest, resp: &mut polariton::operation::OperationResponse, _flags: &mut u8) { if resp.params.get(&Self::SERVICE_MAPPING_KEY).is_none() { if let Some(svelto_service_id) = req.params.get(&Self::SERVICE_MAPPING_KEY) { resp.params.insert(Self::SERVICE_MAPPING_KEY, svelto_service_id.to_owned());