Revert "TimelineClient failed to retry on java.net.SocketTimeoutException: Read timed out"
This reverts commit 2e6ee95716
.
This commit is contained in:
parent
2e6ee95716
commit
3293a7d92d
|
@ -265,8 +265,7 @@ public class TimelineClientImpl extends TimelineClient {
|
|||
public boolean shouldRetryOn(Exception e) {
|
||||
// Only retry on connection exceptions
|
||||
return (e instanceof ClientHandlerException)
|
||||
&& (e.getCause() instanceof ConnectException ||
|
||||
e.getCause() instanceof SocketTimeoutException);
|
||||
&& (e.getCause() instanceof ConnectException);
|
||||
}
|
||||
};
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue