Luca Cominardi

Results 160 comments of Luca Cominardi

@fuzzypixelz what's the status of this PR? Is it ready for review?

For the time being I'd say to keep it as it is. We are always in time to add more types in the future. At the moment the coverage of...

Closed by https://github.com/eclipse-zenoh/zenoh/pull/1193

Can you try adding a `task::sleep(Duration:from_secs(1)` after the `router.close()`? It's not uncommon that the API returns but the system/library still takes a bit to complete the cleanup under the hood.

[This test](https://github.com/eclipse-zenoh/zenoh/blob/main/io/zenoh-transport/tests/endpoints.rs) verifies that links can be open/closed in a loop. I.e. very similar to the scenario you are describing. Do you observe the same behaviour if you run the...

Thanks for the report, we could have stumbled upon something similar during the investigation of https://github.com/eclipse-zenoh/zenoh/issues/1052 and https://github.com/eclipse-zenoh/zenoh/issues/1053. We'll keep investigating it.

@chachi could you share the topology and configuration of every node in your scenario? It would help the debugging. Thanks!

Emulation of Atomics is more a C++ thing than a Rust one. If a platform does not support 64-bit atomics, then it won't be available in Rust. See https://doc.rust-lang.org/std/sync/atomic/#portability.

@diogomatsubara is this PR still alive?