-
Notifications
You must be signed in to change notification settings - Fork 449
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
Monkey Patching Ohai to overcome issues with the Resolv class #1820
Closed
Conversation
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
Signed-off-by: John <[email protected]>
johnmccrae
force-pushed
the
jfm/chef17-monkey-patching-win32
branch
from
March 21, 2024 13:33
948bf6a
to
2d4bf72
Compare
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Signed-off-by: John <[email protected]>
Quality Gate passedIssues Measures |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
In Chef, the Win32/registry class that's native to Ruby does some rude things with encoding that we monkeypatched for. That patch has worked great for a number of years. We recently took an update here for Ohai to overcome and issue FQDN's not displaying correctly for Windows nodes. PR #1816
The new code relies on the Resolv class to update node networking details. The unintended side effect of using the Resolv class is that it unilaterally re-installs the Win32/Registry class which essentially overwrites the monkey patch. Here we apply it to Ohai too.
This code be a breaking change since registry keys were previously retrieved with UTF16-LE encoding and will now be retrieved with UTF-8 encoding.
Related Issue
Types of changes
Checklist:
Gemfile.lock
has changed, I have used--conservative
to do it and included the full output in the Description above.