Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.netflix.client;

import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.util.List;

import javax.annotation.Nullable;
Expand All @@ -25,7 +26,7 @@ public class RequestSpecificRetryHandler implements RetryHandler {
private final boolean okToRetryOnAllErrors;

protected List<Class<? extends Throwable>> connectionRelated =
Lists.<Class<? extends Throwable>>newArrayList(SocketException.class);
Lists.<Class<? extends Throwable>>newArrayList(SocketException.class, SocketTimeoutException.class);

public RequestSpecificRetryHandler(boolean okToRetryOnConnectErrors, boolean okToRetryOnAllErrors) {
this(okToRetryOnConnectErrors, okToRetryOnAllErrors, RetryHandler.DEFAULT, null);
Expand Down