-
Notifications
You must be signed in to change notification settings - Fork 417
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
[REMOVAL] Remove the jaeger exporter #2031
Merged
marcalff
merged 21 commits into
open-telemetry:main
from
marcalff:remove_jaeger_exporter_1938
Jul 2, 2023
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
77d26a8
Fix #1938
marcalff e923728
CHANGELOG
marcalff c8ddd35
removed thrift from CI
marcalff 45612eb
Merge branch 'main' into remove_jaeger_exporter_1938
ThomsonTan c091ec5
Merge branch 'main' into remove_jaeger_exporter_1938
esigo ff15b15
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff 6a5064c
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff 21e392b
Fixed submodule merge
marcalff 519db9a
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff ba0cd95
Removed boost
marcalff 808ef36
Removed uses of thrift and boost.
marcalff 125365e
Adjusted CHANGELOG
marcalff a13ad67
Clarify important changes in CHANGELOG.
marcalff 4ec586d
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff e9ae354
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff 69ebfd3
Restore Jaeger Propagator
marcalff 2ab7c53
Restored jaeger_propagation_test.cc
marcalff bc8e9d9
Updated DEPRECATED.md, for the Jaeger Propagator.
marcalff b01e93e
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff 66ec119
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff db7396f
Merge branch 'main' into remove_jaeger_exporter_1938
marcalff File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Could we keep the option but only allow the default value? I mean if we delete the option, the existing cmake invocation like
cmake -DWITH_JAEGER=OFF
will have warning triggered. The same applies tocmake -DWITH_JAEGER=ON
. Better to show an explicit error message the user tries to enable Jaeger?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.
Thanks for the early comments.
The initial deprecation was announced with release 1.8.2 published on 2023-01-31.
It was advertised at great length, including with pinned issues, so users should be well aware of this by now.
With this removal, the following commands:
will both produce a warning, with CMake indicating that an unknown option is used:
Using
-DWITH_JAEGER=OFF
produces a warning only, and will not cause the build to fail.The fact that the
WITH_JAEGER
option is no longer available is now documented in the CHANGELOG, in the important changes section, for the next release.I don't think the CMakeList.txt should still contain logic about obsolete options, as it makes removing options impossible, this is mitigated by the important changes in the CHANGELOG instead.