Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions capabilities/src/execute_task_solution_capability.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ bool ExecuteTaskSolutionCapability::constructMotionPlan(const moveit_task_constr
// define individual variable for use in closure below
const std::string description = std::to_string(i + 1) + "/" + std::to_string(solution.sub_trajectory.size());
exec_traj.description = description;
exec_traj.trajectory_monitoring = sub_traj.execution_info.trajectory_monitoring;

const moveit::core::JointModelGroup* group = nullptr;
{
Expand Down
2 changes: 2 additions & 0 deletions msgs/msg/TrajectoryExecutionInfo.msg
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# List of controllers to use when executing the trajectory
string[] controller_names
# If true, the trajectory is collision checked before execution.
bool trajectory_monitoring
Loading