Skip to content

Commit

Permalink
Fix serialization of exit events (#364)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <mxgrey@intrinsic.ai>
  • Loading branch information
mxgrey committed Jun 7, 2024
1 parent 77c9f75 commit df95bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmf_traffic_ros2/src/rmf_traffic_ros2/convert_Graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ std::unique_ptr<rmf_building_map_msgs::msg::Graph> convert(
if (exit_event != nullptr)
{
EventPhaseFactory factory("exit", params);
entry_event->execute(factory);
exit_event->execute(factory);
}
const auto* exit_orientation = lane.entry().orientation_constraint();
if (exit_orientation != nullptr)
Expand Down

0 comments on commit df95bc5

Please sign in to comment.