feat(transport): rust zenoh client and router support - #3464
Merged
Conversation
Codecov Report❌ Patch coverage is
@@ Coverage Diff @@
## main #3464 +/- ##
==========================================
+ Coverage 76.13% 76.24% +0.11%
==========================================
Files 1228 1235 +7
Lines 119172 119672 +500
Branches 10684 10688 +4
==========================================
+ Hits 90729 91244 +515
+ Misses 25344 25328 -16
- Partials 3099 3100 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 5 files with indirect coverage changes 🚀 New features to boost your workflow:
|
aclauer
marked this pull request as ready for review
August 14, 2026 18:45
aclauer
requested review from
Dreamsorcerer,
leshy,
mustafab0,
paul-nechifor and
spomichter
as code owners
August 14, 2026 18:45
aclauer
marked this pull request as draft
August 15, 2026 01:09
aclauer
marked this pull request as ready for review
August 16, 2026 17:04
aclauer
force-pushed
the
andrew/feat/zenoh-router-client-support
branch
from
August 18, 2026 20:41
95e7da5 to
92ae414
Compare
Contributor
Greptile SummaryThe change adds configurable Zenoh peer, client, and router sessions across Python services and Rust native modules. It forwards resolved session settings through the native-module launch configuration and adds coverage for topology, discovery, connection timeout, and session wire formats. Confidence Score: 5/5No blocking failure remains. No accepted P0 or P1 findings remain. Reviews (3): Last reviewed commit: "Clean up and fixes" | Re-trigger Greptile |
aclauer
force-pushed
the
andrew/feat/zenoh-router-client-support
branch
from
August 19, 2026 17:52
92ae414 to
88c62e3
Compare
leshy
approved these changes
Aug 19, 2026
aclauer
force-pushed
the
andrew/feat/zenoh-router-client-support
branch
from
August 19, 2026 22:01
88c62e3 to
f21f438
Compare
aclauer
enabled auto-merge
August 19, 2026 22:15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution path
Problem
I didn't add zenoh router and client modes because I was lazy and just used peer mode for everything.
Solution
Now we can pass more configs to the Rust zenoh transport:
How to Test
from
examples/native-modulespython rust_ping_pong.py --transport zenoh<- runs with both modules on peer modepython rust_ping_pong.py --transport zenoh --topology<- runs with pong as router and ping as client, shows in logsAI assistance
Checklist