-
Notifications
You must be signed in to change notification settings - Fork 44
Add Java bindings for no_proxy_hosts setting #925
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
TingDaoK
left a comment
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! Fix&ship
| options.withClientBootstrap(bootstrap).withSocketOptions(socketOptions).withTlsContext(tlsCtx).withUri(uri); | ||
| try (HttpClientConnectionManager connectionPool = HttpClientConnectionManager.create(options)) { | ||
| try (HttpClientConnection conn = connectionPool.acquireConnection().get(60, TimeUnit.SECONDS)) { | ||
| ; | ||
| } | ||
| } |
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.
trivial: Maybe also try to connect the amazon.com, which doesn't fall into the no-proxy and verify it failed as expected.
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.
good idea, added!
Description of changes:
Adds java bindings for the no_proxy_hosts setting introduced in: awslabs/aws-c-http#532
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.