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
Avoid potential recursive call
tags/v0.0.0-test.4
Philipp Oppermann
3 years ago
parent
78e42fd70d
commit
eaf611f755
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
api/node/src/communication.rs
+ 1
- 1
api/node/src/communication.rs
View File
@@ -23,7 +23,7 @@ impl CommunicationLayer for zenoh::Session {
&'a self,
topic: &str,
) -> Result<Pin<Box<dyn futures::Stream<Item = Vec<u8>> + 'a>>, BoxError> {
self.subscribe(
topic)
zenoh::Session::subscribe(self,
topic)
.await
.map(|s| {
let trait_object: Pin<Box<dyn futures::Stream<Item = Vec<u8>> + 'a>> =
Write
Preview
Loading…
Cancel
Save