ahmedabu98 commented on code in PR #28820: URL: https://github.com/apache/beam/pull/28820#discussion_r1347746691
########## sdks/python/apache_beam/utils/retry.py: ########## @@ -57,6 +60,18 @@ # pylint: enable=wrong-import-order, wrong-import-position _LOGGER = logging.getLogger(__name__) +_RETRYABLE_REASONS = [ + "rateLimitExceeded", "quotaExceeded", "internalError", "backendError" +] +_RETRYABLE_TYPES = ( Review Comment: We have tests in this repo that run in environments where these libraries are not available. I'll rewrite it in a more clean way -- 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]
