Skip to content

Commit

Permalink
fix expired goals capacity of action server (#931)
Browse files Browse the repository at this point in the history
Signed-off-by: Kentaro Tanaka <spiralray@gmail.com>
  • Loading branch information
spiralray authored Sep 14, 2021
1 parent 7b899da commit eae50c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcl_action/src/rcl_action/action_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ rcl_action_expire_goals(
int64_t goal_time;
size_t num_goal_handles = action_server->impl->num_goal_handles;
for (size_t i = 0u; i < num_goal_handles; ++i) {
if (output_expired && i >= expired_goals_capacity) {
if (output_expired && num_goals_expired >= expired_goals_capacity) {
// no more space to output expired goals, so stop expiring them
break;
}
Expand Down

0 comments on commit eae50c9

Please sign in to comment.