YARN-5539. TimelineClient failed to retry on java.net.SocketTimeoutException: Read timed out (Junping Du via Varun Saxena)
This commit is contained in:
parent
1524e63206
commit
42f6f68c78
|
@ -241,7 +241,8 @@ public class TimelineClientImpl extends TimelineClient {
|
||||||
public boolean shouldRetryOn(Exception e) {
|
public boolean shouldRetryOn(Exception e) {
|
||||||
// Only retry on connection exceptions
|
// Only retry on connection exceptions
|
||||||
return (e instanceof ClientHandlerException)
|
return (e instanceof ClientHandlerException)
|
||||||
&& (e.getCause() instanceof ConnectException);
|
&& (e.getCause() instanceof ConnectException ||
|
||||||
|
e.getCause() instanceof SocketTimeoutException);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue