You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related to #279 - but a much simpler feature request
When running ros2 node list, add a top level warning and a small note next to all nodes that share a name, e.g.
$ ros2 node list
# WARNING: There are nodes in the graph that share a name - it is recommended that you use namespaces or different names to differentiate nodes
/talker (not uniquely named)
/listener
/talker (not uniquely named)
When running ros2 node info, add a note that you are receiving information about only one node with the given name, if multiple are present, e.g.
$ ros2 node info /talker
# WARNING: there is more than one node found that has the name /talker, you are seeing information about only one of them. It is not guaranteed that you will see information about the same node every time
etc...
This should help make the non-unique situation more obvious, even though it doesn't fix anything.
Implementation considerations
We should already have all the information we need, a sort and pass over the node list should do for both cases.
The text was updated successfully, but these errors were encountered:
Feature request
Related to #279 - but a much simpler feature request
ros2 node list
, add a top level warning and a small note next to all nodes that share a name, e.g.ros2 node info
, add a note that you are receiving information about only one node with the given name, if multiple are present, e.g.This should help make the non-unique situation more obvious, even though it doesn't fix anything.
Implementation considerations
We should already have all the information we need, a sort and pass over the node list should do for both cases.
The text was updated successfully, but these errors were encountered: