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
When using RMW_CONNEXT_ENDPOINT_QOS_OVERRIDE_POLICY="dds_topics:rt/my_topic|rt/my_topic*" and a USER_QOS_PROFILE.xml in the cwd with a topic filter for "rt/my_topic" I would assume that the QoS settings are determined by the profile specified in xml.
In my example I specify a profile with best_effort and deadline for "rt/my_topic" in my xml file.
The subscription by the ros node will however end up with:
using the ros qos_profile_sensor_data on the user code level
best_effort (as specified in xml and on user level)
deadline (as specified in xml)
using the e.g. ros QosProfile(depth=1) on the user code level
reliable (as specified on user level)
deadline (as specified in xml)
Meaning the deadline is always set as defined in the xml file, but reliability is determined by the profile specified in the ros application.
Expected Behavior
Profiles in xml determine the QoS settings for topics specified by RMW_CONNEXT_ENDPOINT_QOS_OVERRIDE_POLICY="dds_topics:rt/my_topic|rt/my_other_topic" and topic filter in USER_QOS_PROFILES.xml file.
Alternative solution: a more specific README on how the different QoS settings are determined. For now I am confused by the README and the observed behavior.
The text was updated successfully, but these errors were encountered:
System Info
Bug Description
When using RMW_CONNEXT_ENDPOINT_QOS_OVERRIDE_POLICY="dds_topics:rt/my_topic|rt/my_topic*" and a USER_QOS_PROFILE.xml in the cwd with a topic filter for "rt/my_topic" I would assume that the QoS settings are determined by the profile specified in xml.
In my example I specify a profile with best_effort and deadline for "rt/my_topic" in my xml file.
The subscription by the ros node will however end up with:
Meaning the deadline is always set as defined in the xml file, but reliability is determined by the profile specified in the ros application.
Expected Behavior
Profiles in xml determine the QoS settings for topics specified by RMW_CONNEXT_ENDPOINT_QOS_OVERRIDE_POLICY="dds_topics:rt/my_topic|rt/my_other_topic" and topic filter in USER_QOS_PROFILES.xml file.
Alternative solution: a more specific README on how the different QoS settings are determined. For now I am confused by the README and the observed behavior.
The text was updated successfully, but these errors were encountered: