Browse Source

Increase sleep duration before closing zenoh session to 2 secs

We still saw some missed stop messages on the CI with the 1sec delay.
tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
e508c478eb
Failed to extract signature
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      apis/rust/node/src/communication/zenoh.rs

+ 1
- 1
apis/rust/node/src/communication/zenoh.rs View File

@@ -60,7 +60,7 @@ impl Drop for ZenohCommunicationLayer {
//
// TODO: create a minimal example to reproduce the dropped messages
// and report this issue in the zenoh repo
std::thread::sleep(Duration::from_secs_f32(1.0));
std::thread::sleep(Duration::from_secs_f32(2.0));
}
}



Loading…
Cancel
Save