Commit 29fb58de by Ryan Baxter Committed by GitHub

Merge pull request #1884 from ryanjbaxter/pass-config-in-retryhandler

Pass config in retry handler
parents 7fcbc0fd dbf17dea
......@@ -103,6 +103,7 @@ public class RibbonLoadBalancingHttpClient extends
@Override
public RequestSpecificRetryHandler getRequestSpecificRetryHandler(RibbonApacheHttpRequest request, IClientConfig requestConfig) {
return new RequestSpecificRetryHandler(false, false, RetryHandler.DEFAULT, null);
return new RequestSpecificRetryHandler(false, false,
RetryHandler.DEFAULT, requestConfig);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment