HTTPCLIENT-1800: wrap redirect around retry in execChain
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/branches/4.5.x@1777766 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0514407d8c
commit
e8002ae3b9
|
@ -1148,6 +1148,13 @@ public class HttpClientBuilder {
|
|||
routePlannerCopy = new DefaultRoutePlanner(schemePortResolverCopy);
|
||||
}
|
||||
}
|
||||
|
||||
// Optionally, add service unavailable retry executor
|
||||
final ServiceUnavailableRetryStrategy serviceUnavailStrategyCopy = this.serviceUnavailStrategy;
|
||||
if (serviceUnavailStrategyCopy != null) {
|
||||
execChain = new ServiceUnavailableRetryExec(execChain, serviceUnavailStrategyCopy);
|
||||
}
|
||||
|
||||
// Add redirect executor, if not disabled
|
||||
if (!redirectHandlingDisabled) {
|
||||
RedirectStrategy redirectStrategyCopy = this.redirectStrategy;
|
||||
|
@ -1157,11 +1164,6 @@ public class HttpClientBuilder {
|
|||
execChain = new RedirectExec(execChain, routePlannerCopy, redirectStrategyCopy);
|
||||
}
|
||||
|
||||
// Optionally, add service unavailable retry executor
|
||||
final ServiceUnavailableRetryStrategy serviceUnavailStrategyCopy = this.serviceUnavailStrategy;
|
||||
if (serviceUnavailStrategyCopy != null) {
|
||||
execChain = new ServiceUnavailableRetryExec(execChain, serviceUnavailStrategyCopy);
|
||||
}
|
||||
// Optionally, add connection back-off executor
|
||||
if (this.backoffManager != null && this.connectionBackoffStrategy != null) {
|
||||
execChain = new BackoffStrategyExec(execChain, this.connectionBackoffStrategy, this.backoffManager);
|
||||
|
|
Loading…
Reference in New Issue