Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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 core/src/storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ void SolutionBase::fillInfo(moveit_task_constructor_msgs::SolutionInfo& info, In
info.comment = this->comment();
const Introspection* ci = introspection;
info.stage_id = ci ? ci->stageId(this->creator()->me()) : 0;
info.creator_name = this->creator()->name();

const auto& markers = this->markers();
info.markers.resize(markers.size());
Expand Down
3 changes: 3 additions & 0 deletions msgs/msg/SolutionInfo.msg
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ string comment
# id of stage that created this trajectory
uint32 stage_id

# name of the stage that created this trajectory
string creator_name

# markers, e.g. providing additional hints or illustrating failure
visualization_msgs/Marker[] markers