YARN-5539. TimelineClient failed to retry on java.net.SocketTimeoutException: Read timed out (Junping Du via Varun Saxena)

This commit is contained in:
Varun Saxena 2016-09-23 13:30:56 +05:30
parent 0e4f2a0edf
commit b58651d8d4
1 changed files with 2 additions and 1 deletions

View File

@ -241,7 +241,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 {