-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Attach context string to gRPC downloader requests #25442
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
This makes it possible to correlate individual requests sent to the remote downloader with the repo rule or module extension they originated from.
meteorcloudy
left a comment
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.
Nice!
|
@bazel-io fork 8.2.0 |
This makes it possible to correlate individual requests sent to the remote downloader with the repo rule or module extension they originated from. Closes bazelbuild#25442. PiperOrigin-RevId: 733425060 Change-Id: I713bbef1b450a27c95f7f263f84c0a198e37fcc2
This makes it possible to correlate individual requests sent to the remote downloader with the repo rule or module extension they originated from. Closes #25442. PiperOrigin-RevId: 733425060 Change-Id: I713bbef1b450a27c95f7f263f84c0a198e37fcc2 Commit f6aaa32 Co-authored-by: Fabian Meumertzheim <fabian@meumertzhe.im>
| buildRequestId, | ||
| commandId, | ||
| actionId, | ||
| actionMetadata != null ? actionMetadata.getProgressMessage() : null, |
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.
Is there a specific reason why we use actionMetadata.getProgressMessage() instead of actionMetadata.getMnemonic()?
I am trying to change the type of actionMetadata to ActionAnalysisMetadata in order to make import of #25448 easier.
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.
It's actually a bug, could you change it back?
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.
@iancha1992 Could you track this as a blocker for 8.2.0?
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 sent #25724 to fix this at HEAD first.
|
@bazel-io fork 8.2.0 |
This makes it possible to correlate individual requests sent to the remote downloader with the repo rule or module extension they originated from.