Skip to content

Commit

Permalink
fix(shift_decider): delete default values (autowarefoundation#2946)
Browse files Browse the repository at this point in the history
delte param

Signed-off-by: yamazakiTasuku <tasuku.yamazaki@tier4.jp>
Co-authored-by: yamazakiTasuku <tasuku.yamazaki@tier4.jp>
  • Loading branch information
2 people authored and nabetetsu committed Mar 1, 2023
1 parent 0bc7154 commit 496a613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/shift_decider/src/shift_decider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ShiftDecider::ShiftDecider(const rclcpp::NodeOptions & node_options)
rclcpp::QoS durable_qos(queue_size);
durable_qos.transient_local();

park_on_goal_ = declare_parameter("park_on_goal", true);
park_on_goal_ = declare_parameter<bool>("park_on_goal");

pub_shift_cmd_ =
create_publisher<autoware_auto_vehicle_msgs::msg::GearCommand>("output/gear_cmd", durable_qos);
Expand Down

0 comments on commit 496a613

Please sign in to comment.