Docs: Note web-bridge port 3201 change in MoveIt Pro 9.4#8
Draft
noah-wardlow wants to merge 1 commit into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
moveit-pro-cliskill tells agents to connectroslibpyto rosbridge on port3201. Starting in MoveIt Pro 9.4, port3201is the MoveIt Pro web-bridge (binary CDR wire format), notrosbridge_server, so rosbridge-protocol clients (roslibpy,roslibjs,rossharp,roslibrust,jrosbridge) can no longer reach3201as-is. The skill's guidance silently breaks on 9.4+.Change
Make the Websocket section version-aware while keeping the existing rosbridge example intact:
≤9.3: port3201isrosbridge_server— existing behavior, unchanged.9.4+: port3201is the web-bridge; rosbridge clients use either the native ROS 2 client libraries (recommended) or the opt-in--enable-rosbridgesidecar on port3204(override with--rosbridge-port).3204sidecar row, relabeled3201) and the headless launch-mode row.Verified against
src/docs/.../rosbridge/rosbridge.mdand the 9.4.0 release notes in themoveit_prorepo: port3201→ web-bridge, sidecar default3204via--enable-rosbridge, override via--rosbridge-port.