Skip to content

Commit

Permalink
Fixes member names (#3121)
Browse files Browse the repository at this point in the history
  • Loading branch information
TSNoble authored Nov 21, 2024
1 parent 0ae12dd commit 5f755d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class MoveGroupInterface::MoveGroupInterfaceImpl
}

setStartStateToCurrentState();
joint_model_group_ = getRobotModel()->getJointModelGroup(opt.group_name);
joint_model_group_ = getRobotModel()->getJointModelGroup(opt.group_name_);

joint_state_target_ = std::make_shared<moveit::core::RobotState>(getRobotModel());
joint_state_target_->setToDefaultValues();
Expand Down Expand Up @@ -961,7 +961,7 @@ class MoveGroupInterface::MoveGroupInterfaceImpl
moveit_msgs::srv::GetCartesianPath::Response::SharedPtr response;

req->start_state = considered_start_state_;
req->group_name = opt_.group_name;
req->group_name = opt_.group_name_;
req->header.frame_id = getPoseReferenceFrame();
req->header.stamp = getClock()->now();
req->waypoints = waypoints;
Expand Down

0 comments on commit 5f755d7

Please sign in to comment.