-
Notifications
You must be signed in to change notification settings - Fork 423
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
[BUILD] Restore Bazel flag removed from public API #2702
[BUILD] Restore Bazel flag removed from public API #2702
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2702 +/- ##
==========================================
+ Coverage 87.12% 87.67% +0.55%
==========================================
Files 200 190 -10
Lines 6109 5853 -256
==========================================
- Hits 5322 5131 -191
+ Misses 787 722 -65 |
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, thanks for the fix.
@keith Please take a look and comment. I assume keeping a unused flag is ok. |
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, thanks.
Keeping and marking deprecated is definitely on. It might be a bit misleading if folks expect it to do something but I definitely understand the issue. |
A follow up to #2679.
This
bool_flag
was a part of the public API. If we remove it, anyone using it in downstream code have broken build commands.So instead of removing it, I think we should mark it as deprecated.
On removing the now useless flag...
I do not know what OpenTelemetry's breaking change policy is. But consider something like:
v2.x
). That is Google's policy (don't laugh).In my own repo, I would typically open a new issue and tag the code so we remember to clean it up later.
I am happy to do that here. You will have to tell me when you want to remove it. (If I have convinced y'all to take this PR).