TimelineClient failed to retry on java.net.SocketTimeoutException: Read timed out

This commit is contained in:
Varun Saxena 2016-09-23 13:23:54 +05:30
parent d85d9b2e7b
commit 2e6ee95716
1 changed files with 2 additions and 1 deletions

View File

@ -265,7 +265,8 @@ 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 ConnectException ||
e.getCause() instanceof SocketTimeoutException);
}
};
try {