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

Add intraprocess check for request reply data #236

Merged
merged 1 commit into from
Apr 30, 2021

Conversation

Acuadros95
Copy link
Contributor

No description provided.

Comment on lines +727 to +740
fastdds::dds::SampleInfo sample_info;
rv = it->second->read(sequence_number, data, timeout, sample_info);

if (intraprocess_enabled_)
{
for (auto rp = repliers_.begin(); rp != repliers_.end(); rp++)
{
if (rp->second->guid_datawriter() == sample_info.sample_identity.writer_guid())
{
rv = false;
break;
}
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be necessary since the proxy client request are blocked when intraprocess_enabled_ enabled

@richiprosima
Copy link
Contributor

Build status:

  • Linux Build Status
  • Windows Build Status

@pablogs9 pablogs9 merged commit 3fc6687 into develop Apr 30, 2021
@pablogs9 pablogs9 deleted the feature/intraprocess branch April 30, 2021 08:33
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.

3 participants