Skip to content

Commit

Permalink
chore: bump zenoh version (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
wyfo authored Oct 9, 2024
1 parent b91be98 commit ed90684
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion zenoh-plugin-ros2dds/src/route_publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ impl RoutePublisher {
}
}
})
.undeclare_on_drop(true)
.await
.map_err(|e| format!("Failed to listen of matching status changes: {e}",))?
};
Expand Down
1 change: 0 additions & 1 deletion zenoh-plugin-ros2dds/src/route_service_srv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ impl RouteServiceSrv {
req_writer,
)
})
.undeclare_on_drop(true)
.await
.map_err(|e| {
format!(
Expand Down
2 changes: 0 additions & 2 deletions zenoh-plugin-ros2dds/src/route_subscriber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ impl RouteSubscriber {
.zsession
.declare_subscriber(&self.zenoh_key_expr)
.callback(subscriber_callback)
.undeclare_on_drop(true)
.allowed_origin(Locality::Remote) // Allow only remote publications to avoid loops
.querying()
.query_timeout(self.queries_timeout)
Expand All @@ -207,7 +206,6 @@ impl RouteSubscriber {
.zsession
.declare_subscriber(&self.zenoh_key_expr)
.callback(subscriber_callback)
.undeclare_on_drop(true)
.allowed_origin(Locality::Remote) // Allow only remote publications to avoid loops
.await
.map_err(|e| format!("{self}: failed to create Subscriber: {e}"))?;
Expand Down

0 comments on commit ed90684

Please sign in to comment.