-
Notifications
You must be signed in to change notification settings - Fork 75
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
Strict unmarshalling should be case-sensitive #15
Comments
i will verify this locally. |
/kind bug |
/assign @neolit123 |
How to reproduce it:
Produces:
|
So with
I wonder what is going on here... |
@martina-if @errordeveloper
|
Hi @neolit123, thanks for the link to the PR! Do you need a review from our side? |
sure, go ahead. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle stale
…On Sun, 11 Aug 2019, 3:22 pm fejta-bot, ***@***.***> wrote:
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually
close.
If this issue is safe to close now please do so with /close.
Send feedback to sig-testing, kubernetes/test-infra and/or fejta
<https://github.com/fejta>.
/lifecycle stale
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#15?email_source=notifications&email_token=AAB5MS2T7SNVAGKL7VA3RE3QEAOBVA5CNFSM4HIT5OIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD4BB22A#issuecomment-520232296>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAB5MS32YD7SZK3E3GIRQSLQEAOBVANCNFSM4HIT5OIA>
.
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle rotten
…On Mon, 9 Dec 2019 at 15:30, fejta-bot ***@***.***> wrote:
Stale issues rot after 30d of inactivity.
Mark the issue as fresh with /remove-lifecycle rotten.
Rotten issues close after an additional 30d of inactivity.
If this issue is safe to close now please do so with /close.
Send feedback to sig-testing, kubernetes/test-infra and/or fejta
<https://github.com/fejta>.
/lifecycle rotten
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#15?email_source=notifications&email_token=AAB5MS7GFITXMWGDHRHCWIDQXZQDFA5CNFSM4HIT5OIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEGJSYJQ#issuecomment-563293222>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB5MSZTGFMGYCK6BSHJNZLQXZQDFANCNFSM4HIT5OIA>
.
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle stale |
/lifecycle frozen |
we faced this recently again here: |
Using
yaml.UnmarshalStrict(...)
compares keys in a case insensitive way.I would expect it to do case sensitive comparisons of key names so that if I define a key in my schema called
somethingGreat
, a key in a yaml file calledsomethingGREat
wouldn't match, and the unmarshal would fail with the errorunknown field "somethingGREat"
.The text was updated successfully, but these errors were encountered: