ChenYing Kuo (CY)

Results 20 issues of ChenYing Kuo (CY)

Now there are some duplicate imports in `lib.rs` ```rust use zenoh::{Error, Result}; use zenoh::core::{Error, Result}; use zenoh::{Session, open}; use zenoh::session::{Session, open}; use zenoh::scout; use zenoh::scouting::scout; ``` For session one, it's...

I found that `mqtt-ws-server.rs` is removed after the PR. https://github.com/ntex-rs/ntex-mqtt/pull/167 Does that mean `ntex-mqtt` doesn't support this anymore?

# 🦟 Bug fix ## Summary Shutdown explicitly after creating an entity. ## Checklist - [ ] Signed all commits for DCO - [ ] Added tests - [ ]...

### Describe the bug ROS 2 action is a combination of several topics and services. There is a service called "action_name" + `/_action/get_result`, which will reply the result of ROS...

bug

### Checklist - [x] I've read the [contribution guidelines](https://github.com/autowarefoundation/autoware/blob/main/CONTRIBUTING.md). - [x] I've searched other issues and no duplicate issues were found. - [x] I'm convinced that this is not my...

Fix https://github.com/eclipse-zenoh/zenoh/issues/1915

bug

Related to https://github.com/eclipse-zenoh/zenoh/issues/1782 This issue is also reported by users on Raspberry Pi, which has insufficient memory. I think it's worth providing information on the README.

documentation

### Describe the bug If we use `apt install cargo` and build Zenoh in Ubuntu 24.04, we will run into the following error messages ``` Compiling zenoh-link-quic v1.2.1 (/zenoh/io/zenoh-links/zenoh-link-quic) Compiling...

bug

Fix https://github.com/eclipse-zenoh/zenoh/issues/1942 I keep the string type for backward compatibility.

bug

Now we need to use `publisher.put(sample.payload().clone()).wait().unwrap()` because ZBytes can't be transformed into &ZBytes. Initially, we considered implementing the Copy trait, but Copy can't be implemented in Vec, which is used...

enhancement