RSDK-14228 Add API for package status#873
Merged
Benjamin Rewis (benjirewis) merged 7 commits intoJul 15, 2026
Merged
Conversation
|
Hey Benjamin Rewis (@benjirewis) — CI is green and no reviewer is assigned yet. Could you request one when you have a chance? Auto-comment from overwatch. Will not re-nudge for 7 days. |
|
Hey Benjamin Rewis (@benjirewis) — CI is green and no reviewer is assigned yet. Could you request one when you have a chance? Auto-comment from overwatch. Will not re-nudge for 7 days. |
347276b to
6ce963f
Compare
aldenh-viam
approved these changes
Jul 10, 2026
Comment on lines
+557
to
+562
| // number of bytes of the package tarball downloaded so far. Only populated | ||
| // while state == STATE_DOWNLOADING; equals total_bytes once the download completes. | ||
| int64 bytes_downloaded = 7; | ||
|
|
||
| // total size of the package tarball in bytes. Zero if the size is unknown. | ||
| int64 total_bytes = 8; |
Contributor
There was a problem hiding this comment.
If these won't be negative, you can use uint64
Evan Dorsky (EvanDorsky)
approved these changes
Jul 13, 2026
|
Hey Benjamin Rewis (@benjirewis) — this PR has been approved and CI has been green for 3+ business days. Ready to merge? Auto-comment from overwatch. Will not re-nudge for 7 days. |
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
fa7ec03 to
da36ff8
Compare
94da633
into
viamrobotics:main
3 checks passed
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.
RSDK-14228
Defines
PackageStatusand addsrepeated PackageStatus packagestoGetMachineStatusResponseper the package status API scope.Adds two extra fields
bytes_downloadedandtotal_bytes.See RDK changes here.