Skip to content

Commit

Permalink
fix complete_n a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
p-avital committed Oct 4, 2023
1 parent 28ad2d6 commit 2005568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh/src/net/routing/queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2178,7 +2178,7 @@ pub fn route_query(
ext_qos: ext::QoSType::request_default(), // TODO
ext_tstamp: None,
ext_nodeid: ext::NodeIdType {
node_id: context.map(|c| c.tree_id).unwrap_or(0) as u16,
node_id: context.unwrap_or(0),
},
ext_target: *t,
ext_budget: None,
Expand Down

0 comments on commit 2005568

Please sign in to comment.