Skip to content
Open
Changes from 5 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 @@ -1294,12 +1294,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 = "";
}

// The following initialization generates warnings when built
Expand Down