Skip to content

Commit

Permalink
Bump Zenoh to 1.0.2 (#139)
Browse files Browse the repository at this point in the history
* Bump Zenoh to 1.0.2

* Resotre batching config

* Add description for batching config
  • Loading branch information
hsule authored Nov 19, 2024
1 parent 3ffa3a0 commit 888d90c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
12 changes: 8 additions & 4 deletions config/zenoh-bridge-ros2dds-conf.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
transport: {
link: {
tx: {
/// Perform batching of messages if they are smaller of the batch_size
batching: false,
queue:{
/// Perform batching of messages if they are smaller of the batch_size
batching: {
/// Default works well in most cases. If performance problems arise, remove the comment to disable batching.
// enabled: false,
}
}
}
}
},
Expand Down Expand Up @@ -44,8 +49,7 @@
"/api/external/set/command/remote/shift",
"/external/selected/control_cmd",
"/control/gate_mode_cmd",
"/sensing/camera/.*",
"/planning/mission_planning/goal"
"/sensing/camera/.*"
],
service_servers: [
// Used by FMS
Expand Down
9 changes: 7 additions & 2 deletions config/zenoh-carla-bridge-conf.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
transport: {
link: {
tx: {
/// Perform batching of messages if they are smaller of the batch_size
batching: false,
queue:{
/// Perform batching of messages if they are smaller of the batch_size
batching: {
/// Default works well in most cases. If performance problems arise, remove the comment to disable batching.
// enabled: false,
}
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion container/Dockerfile_autoware
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN printf 'set-option -g default-shell /bin/bash\nset -g default-terminal "tmux
RUN apt-get install -y llvm-dev libclang-dev cmake
# Used by Autoware & my ROS packages
RUN python3 -m pip install gdown \
eclipse-zenoh==1.0.0-alpha.6 \
eclipse-zenoh==1.0.2 \
setuptools==58.2.0
RUN apt-get install -y ros-humble-moveit-msgs \
ros-humble-object-recognition-msgs \
Expand Down
2 changes: 1 addition & 1 deletion external/zenoh_carla_bridge

0 comments on commit 888d90c

Please sign in to comment.