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
The following snippet creates and spins a ROS 2 node with a bunch of dummy entities.
In total it has 1 action server, 2 action clients, 1 parameters client, 5 subscriptions.
For the sake of testing, all entities use the same type of message (Fibonacci actions and Odometry messages) but the problem is present even if they would all use different types.
With this configuration, an action client is not able to communicate with the action server created by this node.
Running the aforementioned node and then, in a separate terminal running
$ ros2 action send_goal /impossible_action example_interfaces/action/Fibonacci "{}"
Waiting for an action server to become available...
Additional notes
Removing any of the entities (e.g. 1 subscription or 1 action client) fixes the problem
Indeed I noticed it because after adding the fifth subscription the server stopped working.
This example works with cyclonedds.
The text was updated successfully, but these errors were encountered:
Bug report
Required Info:
Steps to reproduce issue
The following snippet creates and spins a ROS 2 node with a bunch of dummy entities.
In total it has 1 action server, 2 action clients, 1 parameters client, 5 subscriptions.
For the sake of testing, all entities use the same type of message (Fibonacci actions and Odometry messages) but the problem is present even if they would all use different types.
Actual behavior
With this configuration, an action client is not able to communicate with the action server created by this node.
Running the aforementioned node and then, in a separate terminal running
Additional notes
Removing any of the entities (e.g. 1 subscription or 1 action client) fixes the problem
Indeed I noticed it because after adding the fifth subscription the server stopped working.
This example works with cyclonedds.
The text was updated successfully, but these errors were encountered: