Skip to content

Commit 624134a

Browse files
committed
fix ci
1 parent 7b9a399 commit 624134a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ros-z-console/src/core/engine.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl CoreEngine {
5252
// Initialize graph with backend-specific liveliness pattern and parser
5353
use ros_z::backend::{KeyExprBackend, RmwZenohBackend, Ros2DdsBackend};
5454

55-
let (liveliness_pattern, graph) = match backend {
55+
let (_liveliness_pattern, graph) = match backend {
5656
Backend::RmwZenoh => {
5757
// RmwZenoh format: @ros2_lv/{domain_id}/**
5858
let pattern = format!("@ros2_lv/{domain_id}/**");
@@ -61,7 +61,7 @@ impl CoreEngine {
6161
&session,
6262
domain_id,
6363
pattern.clone(),
64-
|ke| RmwZenohBackend::parse_liveliness(ke),
64+
RmwZenohBackend::parse_liveliness,
6565
)?;
6666
(pattern, g)
6767
}
@@ -73,7 +73,7 @@ impl CoreEngine {
7373
&session,
7474
domain_id,
7575
pattern.clone(),
76-
|ke| Ros2DdsBackend::parse_liveliness(ke),
76+
Ros2DdsBackend::parse_liveliness,
7777
)?;
7878
(pattern, g)
7979
}

0 commit comments

Comments
 (0)