-
Notifications
You must be signed in to change notification settings - Fork 84
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
android DNS: add ability to use fallback nameservers #1953
Merged
Merged
Changes from 11 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
e937b49
Revert "Allow ByteBuffer.position() to be used for the data length. (…
8025b51
working
7c14dbf
looking ok
f733c70
working
df16b30
Revert "Revert "Allow ByteBuffer.position() to be used for the data l…
c967e28
add no-op ios
d5858b1
Merge branch 'main' into working-config
e279b30
Revert "incompletely used APIs for final stream metrics (#1937)"
97f8280
update
232bb61
iOS
3cfa846
Revert "Revert "incompletely used APIs for final stream metrics (#193…
fa15562
default
ec58100
update envoy
4d550e4
Revert "Revert "Revert "incompletely used APIs for final stream metri…
502ccb2
bazel: add bazelw wrapper (#1935)
keith e07a0bc
Update Objective-C on error/cancel to include final_stream_intel (#1954)
jpsim 99d101c
ci: Change last bazel references to bazelw (#1956)
keith 18aed78
[EnvoyBridgeUtility] Fix NSString to envoy_data conversion (#1958)
jpsim ff2786d
Fix V6 interface binding logging (#1959)
jpsim d249559
Update Envoy to 70a5f29 (#1962)
jpsim 040f545
Bumping Envoy to 247deb39110eca961af1ee8147a1cbb373c6cced247d (#1968)
alyssawilk 88ac9d3
Revert "Revert "Revert "Revert "incompletely used APIs for final stre…
8b09ad7
envoy: b1219ef0d (#1970)
junr03 53a927d
python
280ed93
fmt
2da3985
docs: replace old lyft URL (NFC) (#1957)
keith b967fe5
Merge branch 'main' into working-config
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
Submodule envoy
updated
46 files
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
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.
Need a default for this. I think it makes sense to just specify c-ares as the default above (along with
dns_resolver_config
, and iOS can still always override it with the apple dns resolves.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.
@goaway I was wondering if this was the case. I make overrides for it on both the java and objc definitions so I saw no point in putting in a default in the common template given there is no common default.
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.
Right now the default (header + config) with no overrides is a valid config. I'd like to keep it that way.
One reason is that we can start to use it in tests, instead of the canned configs some tests use (that have tendency to drift).
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.
That's fair. Will update.
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.
Thank you!