forked from AsyncHttpClient/async-http-client
-
Notifications
You must be signed in to change notification settings - Fork 2
Remote repo configuration version 2.8.1 #7
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
Open
tranchitam
wants to merge
60
commits into
remote-repo-configuration
Choose a base branch
from
remote-repo-configuration-version-2.8.1
base: remote-repo-configuration
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Remote repo configuration version 2.8.1 #7
tranchitam
wants to merge
60
commits into
remote-repo-configuration
from
remote-repo-configuration-version-2.8.1
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
…ient#1571 Motivation: Sending a chunked request body (hence not direct) cause AHC to crash. Motivation: Fix SslHandler position that should be before the ChunkedWriteHandler. Result: Chunked request works with HTTPS proxy.
…ent#1585), close AsyncHttpClient#1568 * Add non-null ResponseBody for responses with empty body * Introduced empty ResponseBody as a constant
…r instance String) as the key type (AsyncHttpClient#1587)
…HttpClient#1582) * add the ability to pass in a {principal name, keytab} combination to async http client. * fix issue where spnego principal/keytab was no longer optional * specify the login config as a map to allow all the values custom not just a couple of them. * remove the principal/password assertion on not null add a map of spnego engines so you can support more than one spnego login confg per jvm * no need to detect null on loginContext * add a SpnegoEngine unit test. * Delete kerberos.jaas * Update pom.xml * Provide more granularity to be more aligned with other http clients: * Login context name * Username/password auth option * remove useless comment * add login context name and username into the instance key * cxf.kerby.version -> kerby.version
…lName is not specified. (AsyncHttpClient#1588) * fix when servicePrincipalName is not specified. * unit test the fix.
Thanks a lo, it really helps!
* Added BlockingConnectionSemaphoreFactory * Added missing copyright to BlockingSemaphoreInfinite * Added acquireFreeChannelTimeout configuration value * Implemented acquireFreeChannelTimeout by replacing existing NonBlocking semaphores with regular Semaphores * ConnectionSemaphore tests
Fixed artifact name to `async-http-client-extras-typesafe-config`, there was a missing dash
* reenable osgi support * accept javax.activation 1.1 to support karaf with java 8
* Don't try to cancel already completed future. If AHC is used concurrently with rxjava retrofit call adapter using `flatMap(Function, maxConcurrency)` warning messages are being logged about future not being able to be cancelled, because it's already complete. This patch remedies situation by first checking whether future has been already completed. * Added ability to fetch async http client instance from a supplier. Sometimes it's handy not to tie call factory to particular http client instance, but to fetch it from a supplier. This patch adds ability to fetch http client from a supplier while retaining ability to use particular, fixed http client instance.
* Lombok update to 1.18.6 * Fixed NPE when http client supplier was specied and http client was not. This patch addresses issue that resulted in NPE if http client supplier was specified in `Call.Factory` builder and concrete http client was not, because `getHttpClient()` method was not invoked while constructing retrofit `Call` instance. New, obviously less error prone approach is that http client supplier gets constructed behind the scenes even if user specifies concrete http client instance at call factory creation time and http client supplier is being used exclusively also by `Call` instance. This way there are no hard references to http client instance dangling around in case some component creates a `Call` instance and never issues `newCall()` on it. Fixes AsyncHttpClient#1616.
Retrofit `Call` now uses http client's configured request timeout to compute value for `timeout()` and blocking `execute()` method execution timeout.
Before this patch build was using outdated javadoc plugin which failed build on OracleJDK 8 due to javadoc generation error on `extras/retrofit2` module. Builds on OpenJDK 8 finished successfully. Changes: * maven-javadoc-plugin version bump to `3.0.1` * added javadoc generation to travis build recipe
This reverts commit 9867087.
* Correct versioning and rotate secrets again * Update s3-storage-wagon
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.
Purpose
Merge original branch 2.8.1 to this branch