-
Notifications
You must be signed in to change notification settings - Fork 943
Fixed a bug where the default setting for DNS over TCP was unintentionally disabled #6202
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
Conversation
…nally disabled. Motivation: DNS over TCP configuration should be enabled by default for DNS resolvers. The default setting was disabled while line#6127 was implemented. Motifications: - Revert the default settings for TCP fallback to enable by default. Result: The default DNS resolver correctly performs TCP fallback.
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 quick fix! 🙇
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6202 +/- ##
============================================
+ Coverage 74.46% 74.57% +0.11%
- Complexity 22234 22384 +150
============================================
Files 1963 1969 +6
Lines 82437 82799 +362
Branches 10764 10789 +25
============================================
+ Hits 61385 61751 +366
+ Misses 15918 15911 -7
- Partials 5134 5137 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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!
Thanks, @ikhoon! |
…nally disabled (#6202) Motivation: DNS over TCP configuration should be enabled by default in DNS resolvers. However, the default setting was unintentionally disabled during the implementation of #6127. Motifications: - Revert the default settings to re-enable TCP fallback in DNS resolver. Result: The default DNS resolver now correctly performs TCP fallback.
Motivation:
DNS over TCP configuration should be enabled by default in DNS resolvers. However, the default setting was unintentionally disabled during the implementation of #6127.
Motifications:
Result:
The default DNS resolver now correctly performs TCP fallback.