-
Notifications
You must be signed in to change notification settings - Fork 0
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
add an artifact ID to the artifact intent/upload requests #40
Conversation
This will be used to wrap the file contents and include a client-generated ID for the upload
// A client-generated ID that uniquely identifies the artifact. This is used to correlate the artifact | ||
// with logs that reference it. | ||
string artifact_id = 4 [(validate.rules).string = {min_len: 1}]; |
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.
I feel like the intent_uuid and the upload_uuid below can probably be used for this, but it doesn't really matter if you want to keep them independent for future proofing.
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.
Yeah I had the same thought but seemed nice to have it split in case these two end up diverging
Co-authored-by: Matt Klein <[email protected]> Signed-off-by: Snow Pettersen <[email protected]>
This will be used to wrap the file contents and include a client-generated ID for the upload