Commit dbf17dea by Ryan Baxter

Pass config in retry handler. Fixes #1879.

parent 7fcbc0fd
...@@ -103,6 +103,7 @@ public class RibbonLoadBalancingHttpClient extends ...@@ -103,6 +103,7 @@ public class RibbonLoadBalancingHttpClient extends
@Override @Override
public RequestSpecificRetryHandler getRequestSpecificRetryHandler(RibbonApacheHttpRequest request, IClientConfig requestConfig) { 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