-
Notifications
You must be signed in to change notification settings - Fork 9
Add Databroker Participant type [12151] #82
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
base: main
Are you sure you want to change the base?
Conversation
1c405b1 to
0a44cea
Compare
|
@laura-eprosima please check this PR. |
ea083bb to
64b4901
Compare
lauramg15
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO:
- Add test
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
Signed-off-by: jparisu <javierparis@eprosima.com>
e7271ea to
7435086
Compare
| if (dds_participant_) | ||
| // Depending the SH type, use participant qos or databroker qos | ||
| // TODO : change for databroker alias refactor | ||
| if (config["discovery-server"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to maintain consistency with the rest of the tags.
| if (config["discovery-server"]) | |
| if (config["discovery_server"]) |
| logger_ << utils::Logger::Level::INFO | ||
| << "Created Fast DDS participant '" << dds_participant_->get_qos().name() | ||
| << "' from profile configuration '" << profile_name << "'" << std::endl; | ||
| participant_qos = get_databroker_qos(config["discovery-server"]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| participant_qos = get_databroker_qos(config["discovery-server"]); | |
| participant_qos = get_databroker_qos(config["discovery_server"]); |
Signed-off-by: jparisu javierparis@eprosima.com