essobedo opened a new pull request, #8497: URL: https://github.com/apache/camel/pull/8497
Related to https://issues.apache.org/jira/browse/CAMEL-18582 ## Motivation With the latest fix, we now get errors of type `SocketTimeoutException: Read timed out` indicating that the runner loses regularly the connection with maven central for some period of time but as it can recover it, to workaround it, we need to make sure that it can retry when it faces this kind of error. ## Modifications: * Use `default` as retry handler instead of `standard` to be able to change the non-retryable classes * By default, `SocketTimeoutException` as a subclass of `InterruptedIOException` is part of the non-retryable classes which is the reason why no retries are made, so we need to redefine the non-retryable classes without `InterruptedIOException` to make sure that it will retries in case of `Read timed out` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
