Skip to content

Commit

Permalink
Refs #22658: Fix bug
Browse files Browse the repository at this point in the history
Signed-off-by: Juanjo Garcia <juanjosegarcia@eprosima.com>
  • Loading branch information
juanjo4936 committed Jan 28, 2025
1 parent 034f674 commit c1e2ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/rtps/writer/StatefulWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ void StatefulWriter::check_acked_status()

if (min_low_mark >= get_seq_num_min())
{
may_remove_change_ = 1;
may_remove_change_ = (get_seq_num_min() == SequenceNumber_t::unknown()) ? 2 : 1;
}

min_readers_low_mark_ = min_low_mark;
Expand Down

0 comments on commit c1e2ee7

Please sign in to comment.