Skip to content

Commit

Permalink
Add environment as const to data storage, update RICB to 0.6.2, fix d…
Browse files Browse the repository at this point in the history
…ependencies for unstable
  • Loading branch information
rjoomen committed Jul 18, 2024
1 parent 3b3e37c commit bf6a52a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dependencies.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.0
version: 0.6.2
tesseract:
type: git
url: https://github.com/tesseract-robotics/tesseract.git
Expand Down
6 changes: 3 additions & 3 deletions dependencies_unstable.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: master
version: 0.6.2
tesseract:
type: git
url: https://github.com/tesseract-robotics/tesseract.git
Expand All @@ -22,11 +22,11 @@ repositories:
descartes_light:
type: git
url: https://github.com/swri-robotics/descartes_light.git
version: master
version: 0.4.3
opw_kinematics:
type: git
url: https://github.com/Jmeyer1292/opw_kinematics.git
version: master
version: 0.5.0
ifopt:
type: git
url: https://github.com/ethz-adrl/ifopt.git
Expand Down
2 changes: 1 addition & 1 deletion dependencies_with_ext.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.0
version: 0.6.2
tesseract_ext:
type: git
url: https://github.com/tesseract-robotics/tesseract_ext.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ void TesseractPlanningServer::onMotionPlanningCallback(
// Create solve data storage
auto data = std::make_unique<TaskComposerDataStorage>();
data->setData("planning_input", std::move(planning_input));
data->setData("environment", std::move(env));
data->setData("environment", std::shared_ptr<const tesseract_environment::Environment>(std::move(env)));
data->setData("profiles", profiles_);
auto move_profile_remapping = tesseract_rosutils::fromMsg(goal->request.move_profile_remapping);
if (!move_profile_remapping.empty())
Expand Down

0 comments on commit bf6a52a

Please sign in to comment.