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

get valid subscription handle even if cft failed #106

Open
wants to merge 6 commits into
base: rolling
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions rmw_connextdds_common/src/common/rmw_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1310,12 +1310,11 @@ RMW_Connext_Subscriber::create(
sub_cft_params,
&cft_topic);

if (RMW_RET_OK != cft_rc) {
if (RMW_RET_UNSUPPORTED != cft_rc) {
return nullptr;
}
} else {
if (RMW_RET_OK == cft_rc) {
sub_topic = cft_topic;
} else {
// RMW_Connext_Subscriber needs this value to check if CFT is enabled or not.
sub_cft_expr = "";
fujitatomoya marked this conversation as resolved.
Show resolved Hide resolved
}

// The following initialization generates warnings when built
Expand Down