-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
transport,grpc: Integrate delegating resolver and introduce dial options for target host resolution #7881
Merged
Merged
transport,grpc: Integrate delegating resolver and introduce dial options for target host resolution #7881
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
619dcd4
Change proxy behaviour
eshitachandwani 65b33bd
change delegating resolver
eshitachandwani 94364e2
Improving code
eshitachandwani 9f6a067
correct import
eshitachandwani 5ce86d0
improve tests
eshitachandwani fbef3a4
address comments
eshitachandwani 342c332
add warning and httpfunc test
eshitachandwani 8726188
add warning and httpfunc test
eshitachandwani 1cfb089
from delegating_pr
eshitachandwani 32d9de5
improve code
eshitachandwani 34b902f
improve code
eshitachandwani 11c8fb1
improve
eshitachandwani b4c9980
correct tests
eshitachandwani 93fc3e1
trying tests
eshitachandwani e22ad1d
tests
eshitachandwani b515565
test
eshitachandwani 7ae2797
correct test environment
eshitachandwani 5ce4658
Correct pr
eshitachandwani a292b63
Merge branch 'master' into proxy_pr2
eshitachandwani 4483e95
rebase
eshitachandwani d4f6215
comment
eshitachandwani 333a68c
proxy testutils refactor
eshitachandwani cacf058
correct vet.sh
eshitachandwani 7c5b1b3
correct vet
eshitachandwani cb6b09c
Merge branch 'grpc:master' into proxy_pr2
eshitachandwani ff05ee3
something
eshitachandwani 104cd18
working tests manual resolver
eshitachandwani fb23cca
working tests manual resolver
eshitachandwani ef927ce
test
eshitachandwani bc5efc3
trying test without manual resolver
eshitachandwani 876f09e
e2e tests
eshitachandwani 3e20010
correct vet
eshitachandwani 6827a62
correct e2e tests
eshitachandwani 9acd8de
correct vet
eshitachandwani 8f5055e
vet
eshitachandwani bbd7f02
vet
eshitachandwani 128da2c
addresses comments
eshitachandwani 7cb9ec8
add package comment
eshitachandwani 0d055b3
correct timeout
eshitachandwani 07b9344
format
eshitachandwani f75662d
address comments
eshitachandwani 2df2f2e
new test for env variable
eshitachandwani 9e52674
test
eshitachandwani 7d230bc
remove mocking and check enviornment
eshitachandwani 27cc055
comment for httpproxy
eshitachandwani 227c748
address comments
eshitachandwani bdbe501
remove helper
eshitachandwani 8a43a91
proxy helper function
eshitachandwani a73d511
proxy helper function
eshitachandwani 0c154cf
proxy helper function
eshitachandwani d396d31
change proxy_utils
eshitachandwani fd088d1
change proxy_utils
eshitachandwani 32fa83c
change proxy_utils
eshitachandwani 382bcb1
addr comments
eshitachandwani 69037b0
add userSet option
eshitachandwani 127f485
change userinfo to pointer
eshitachandwani 2a4f24c
change proxy server return ip address
eshitachandwani 9f26c4f
chamge HTTPProxy to new
eshitachandwani a3dcaa7
Merge branch 'grpc:master' into proxy_pr2
eshitachandwani dd7ee47
Merge branch 'grpc:master' into proxy_pr2
eshitachandwani 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
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
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
arjan-bal marked this conversation as resolved.
Show resolved
Hide resolved
|
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
Oops, something went wrong.
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.
The thing it returns is a
ProxyServer
from packageproxyserver
so this should just beNew
.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! Done!