This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
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
041850ebd0
commit
e508c478eb
Failed to extract signature
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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));
}
}
Write
Preview
Loading…
Cancel
Save