Skip to content

Commit

Permalink
chore: extend setting velocity limit attempt count from 30 to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
HansRobo authored Feb 25, 2025
1 parent 88351bf commit 8029566
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions external/concealer/src/field_operator_application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,10 @@ auto FieldOperatorApplication::setVelocityLimit(double velocity_limit) -> void
auto request = std::make_shared<SetVelocityLimit::Request>();
request->velocity = velocity_limit;
/*
We attempt to resend the service up to 30 times, but this number of
We attempt to resend the service up to 200 times, but this number of
times was determined by heuristics, not for any technical reason.
*/
requestSetVelocityLimit(request, 30);
requestSetVelocityLimit(request, 200);
});
}

Expand Down

0 comments on commit 8029566

Please sign in to comment.