-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Artifact debug repr should include the owner #6272
Comments
Assigning to configurability for now, this might be Execution. |
Reassigning to Starlark, since this is about |
Thank you for contributing to the Bazel repository! This issue has been marked as stale since it has not had any activity in the last 1+ years. It will be closed in the next 90 days unless any other activity occurs. If you think this issue is still relevant and should stay open, please post any comment here and the issue will no longer be marked as stale. |
As of bf4123d,
Artifact
equality takes the artifact owner into account. Since the Starlarkrepr
ofArtifact
only prints the execpath, it's possible to have two artifacts,a
andb
, that have the same execpath (and thus repr) but satisfya != b
. Unsurprisingly, this generates confusion–even for seasoned Blaze developers. Therefore, I propose including the owner in the output ofprint
ing an artifact.The text was updated successfully, but these errors were encountered: