TimelineClient failed to retry on java.net.SocketTimeoutException: Read timed out
This commit is contained in:
parent
d85d9b2e7b
commit
2e6ee95716
@ -265,7 +265,8 @@ public Object run() {
|
||||
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 {
|
||||
|
Loading…
Reference in New Issue
Block a user