-
Notifications
You must be signed in to change notification settings - Fork 947
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Rviz argument in demo_gazebo.launch #1797
Conversation
The name of the launch argument in the invoked launch file is `rviz_config` but is incorrectly called as `config`here. This fix was already merged with `demo.launch` but was missed for this file.
Thanks for helping in improving MoveIt and open source robotics! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much for the report / pull-request!
Please change the argument's value as well.
moveit_setup_assistant/templates/moveit_config_pkg_template/launch/demo_gazebo.launch
Outdated
Show resolved
Hide resolved
…unch/demo_gazebo.launch The new argument requires a config file instead of boolean value. See moveit#1397. Co-Authored-By: jschleicher <j.schleicher@pilz.de>
Codecov Report
@@ Coverage Diff @@
## master #1797 +/- ##
==========================================
+ Coverage 47.5% 47.58% +0.07%
==========================================
Files 290 290
Lines 22948 22950 +2
==========================================
+ Hits 10901 10920 +19
+ Misses 12047 12030 -17
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Congrats on getting your first MoveIt pull request merged and improving open source robotics! |
* rename config -> rviz_config * replace boolean value with file location (as in demo.launch)
* rename config -> rviz_config * replace boolean value with file location (as in demo.launch)
* rename config -> rviz_config * replace boolean value with file location (as in demo.launch)
…eit#1797) * fix: resolve bugs in MoveGroupSequenceAction class * style: adopt .clang-format Co-authored-by: Marco Magri <marco.magri@fraunhofer.it>
Description
The name of the launch argument in the invoked launch file
moveit_rviz.launch
isrviz_config
but is incorrectly called asconfig
here. This fix was already merged withdemo.launch
but was missed for this file.Simply launching this launch file now throws the unused args error.
Checklist