-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Fix: Force usage of case-sensitive keys in configurations #6876
Fix: Force usage of case-sensitive keys in configurations #6876
Conversation
Codecov ReportBase: 90.64% // Head: 90.66% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #6876 +/- ##
==========================================
+ Coverage 90.64% 90.66% +0.02%
==========================================
Files 241 241
Lines 14523 14526 +3
==========================================
+ Hits 13164 13170 +6
+ Misses 1091 1089 -2
+ Partials 268 267 -1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
bbf7182
to
923fd8e
Compare
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 hope you'll permit a stranger to start getting involved with nitty reviews :)
Signed-off-by: Raphael Silva <[email protected]>
Co-authored-by: Gabriel Aszalos <[email protected]>
Co-authored-by: Gabriel Aszalos <[email protected]>
Signed-off-by: Raphael Silva <[email protected]>
e201ab8
to
2d4e30d
Compare
)" This reverts commit 8fa8408.
…etry#6876) * Fix: Force usage of case-sensitive keys in configurations Signed-off-by: Raphael Silva <[email protected]> * Update confmap/confmap.go Co-authored-by: Gabriel Aszalos <[email protected]> * Update .chloggen/case-sensitive-configuration.yaml Co-authored-by: Gabriel Aszalos <[email protected]> * convert caseSensitiveMatchName to a plain function Signed-off-by: Raphael Silva <[email protected]> Signed-off-by: Raphael Silva <[email protected]> Co-authored-by: Gabriel Aszalos <[email protected]>
…ions (open-telemetry#6876)" (open-telemetry#6988)" This reverts commit 80cabdd. Closes open-telemetry#7002
Signed-off-by: Raphael Silva [email protected]
Description: Fix bug that allowed users to specify invalid configurations that would pass validation but would not work properly or fail silently. E.g.:
loglevel
. If you specifylogLevel
, the validation would pass but the collector logging exporter would not produce logs.Testing: Added unit test before changing the code.