-
Notifications
You must be signed in to change notification settings - Fork 44
RSDK-7230: add machine_id to cloud metadata #277
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
Conversation
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.
LGTM. I'm guessing the parsing out instead of using AsObject
is to avoid returning the redundant robotPartId
?
yeah... I might do this differently depending on the answer to my question on the corresponding python sdk change. |
We're gonna do this: viamrobotics/viam-python-sdk#585 (comment) - will update this PR once the corresponding proto API change is live |
@@ -43,7 +43,6 @@ describe('moveOnGlobe', () => { | |||
type: 'component', | |||
subtype: 'base', | |||
name: 'myBase', | |||
machinePartId: '', |
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.
removing a very ironic reference to a different machinePartId
field that was removed in an unrelated proto update
Breaking change!Not anymore!Add
machineId
to thegetCloudMetadata
robot client method.Also change the return type and renameWe are just deprecating the duplicate field instead.robotPartId
tomachinePartId
for clarity.Depends on: