Skip to content

Commit

Permalink
Refs #12522: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: jparisu <javierparis@eprosima.com>
  • Loading branch information
jparisu committed Oct 26, 2021
1 parent 8e7e6ff commit 1b1f1c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1726,7 +1726,7 @@ void DiscoveryDataBase::AckedFunctor::operator () (
// If either of both has happenned we should not wait for it to ack this data, so we
// skip it and leave it as acked
auto remote_server_it = db_->participants_.find(*it);
if (remote_server_it == db_->participants_.end())
if (remote_server_it != db_->participants_.end())
{
logInfo(DISCOVERY_DATABASE, "Change " << change_->instanceHandle <<
"check as acked for " << reader_proxy->guid() << " as it has not answered pinging yet");
Expand Down

0 comments on commit 1b1f1c9

Please sign in to comment.