Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: incompatible QoS settings for subs #1023

Open
wants to merge 9 commits into
base: ros2
Choose a base branch
from

Conversation

Egoless41
Copy link

for reliability, if any subscribed topic has a non-reliable policy, we set reliability to best effort. for durability, if if any subscribed topic has a non-transient-local policy, we set durability to volatile.

Public API Changes
None

Description
for reliability, if any subscribed topic has a non-reliable policy, we set reliability to best effort. for durability, if if any subscribed topic has a non-transient-local policy, we set durability to volatile.

Fix for #1022

Egoless41 and others added 4 commits March 27, 2025 14:06
for reliability, if any subscribed topic has a non-reliable policy, we set reliability to best effort. for durability, if if any subscribed topic has a non-transient-local policy, we set durability to volatile.
@bjsowa
Copy link
Collaborator

bjsowa commented Mar 28, 2025

for reliability, if any subscribed topic has a non-reliable policy, we set reliability to best effort

This is already the case. It is exactly what this line does:

        if any(pub.qos_profile.reliability == ReliabilityPolicy.BEST_EFFORT for pub in infos):
            qos.reliability = ReliabilityPolicy.BEST_EFFORT

for durability, if if any subscribed topic has a non-transient-local policy, we set durability to volatile.

so in other words, we set transient local policy if all publishers on that topic also use transient local policy. Wouldn't it be easier if you just modified this line:

        if any(pub.qos_profile.durability == DurabilityPolicy.TRANSIENT_LOCAL for pub in infos):

by changing any to all ?

@Egoless41
Copy link
Author

Tests facing same problem with my issue:

[rosbridge_websocket-1] [WARN] [1743686946.443985423] [rosbridge_websocket]: New publisher discovered on topic '/a_topic', offering incompatible QoS. No messages will be received from it. Last incompatible policy: DURABILITY
'''

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants