-
Notifications
You must be signed in to change notification settings - Fork 61
Fix/concealer 7/transition #1584
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
Conversation
…to target state Signed-off-by: yamacir-kit <[email protected]>
Signed-off-by: yamacir-kit <[email protected]>
Checklist for reviewers ☑️All references to "You" in the following text refer to the code reviewer.
|
Signed-off-by: yamacir-kit <[email protected]>
Failure optional scenariosNote This is an experimental check and does not block merging the pull-request. scenario failed: execution_time_test <failure type="SimulationFailure" message="CustomCommandAction typed "exitFailure" was triggered by the named Conditions {"update time checker", "avoid startup"}: {"update time checker": Is the /simulation/interpreter/execution_time/update (= 0.007603000000000000382915921193) is greaterThan 0.005?}, {"avoid startup": Is the simulation time (= 1.050000000000000266453525910038) is greaterThan 1.000000000000000000000000000000?}" /> |
Signed-off-by: yamacir-kit <[email protected]>
Signed-off-by: yamacir-kit <[email protected]>
…alizing` Signed-off-by: yamacir-kit <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, waiting for green CIs.
Failure optional scenariosNote This is an experimental check and does not block merging the pull-request. scenario failed: execution_time_test <failure type="SimulationFailure" message="CustomCommandAction typed "exitFailure" was triggered by the named Conditions {"update time checker", "avoid startup"}: {"update time checker": Is the /simulation/interpreter/execution_time/update (= 0.005442999999999999921618254461) is greaterThan 0.005?}, {"avoid startup": Is the simulation time (= 13.000000000000049737991503207013) is greaterThan 1.000000000000000000000000000000?}" /> |
|
Description
Abstract
This pull request fixes some bugs in Autoware state control in
scenario_simulator_v2
.Background
None.
Details
FieldOperatorApplication::initialize
,plan
, andengage
now wait if the current Autoware state is earlier than expected. This allows Autoware to transition states appropriately even if it takes a long time to process a service request after accepting it.FieldOperatorApplication::waitForAutowareStateToBe
now takes not only the target state but also the state at the time of the call. This allows state waiting to be performed for that range of states, and also allows the wait to be properly terminated if the state is ahead of the target state (which occurs when the member function is called and the Autoware state changes at the same time).References
None.
Destructive Changes
None.
Known Limitations
None.