-
Notifications
You must be signed in to change notification settings - Fork 45
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
Added motion duration to gui_camera.proto #408
Conversation
This would be a good feature to add, but unfortunately, adding a field to an existing message breaks ABI, therefore this needs to target |
Bummer. :-) I tried to change this, but I did not succeed. Is there some way to retarget just this change, or should I rather close this and make a new PR? |
Looks like @mjcarroll has changed the base branch on the PR, but you'll need to run |
You can try something like this: git checkout main
git checkout -b jrutgeer/duration/gui_camera
git cherry-pick d5e497e365b6b585f08b896acef4a0a5d2739834
git branch -D gz-msgs10
git checkout -b gz-msgs10
git push -f origin gz-msgs10 Anyhow is a bad idea to use the branch that you are trying to modify (in this case |
friendly ping @jrutgeer |
Signed-off-by: Johan Rutgeerts <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #408 +/- ##
=======================================
Coverage 97.26% 97.26%
=======================================
Files 27 27
Lines 1170 1170
=======================================
Hits 1138 1138
Misses 32 32 ☔ View full report in Codecov by Sentry. |
@osrf-jenkins run tests please! |
🎉 New feature
Summary
Added 'duration' field to the proto, to allow to set the duration for the 'move to pose' service of the camera tracking plugin.