eladkal commented on code in PR #67222:
URL: https://github.com/apache/airflow/pull/67222#discussion_r3279153547
##########
providers/amazon/src/airflow/providers/amazon/aws/utils/waiter_with_logging.py:
##########
@@ -30,6 +30,28 @@
if TYPE_CHECKING:
from botocore.waiter import Waiter
+# Standard throttling and transient error codes to retry on
+# https://docs.aws.amazon.com/general/latest/gr/api-retries.html
+# and https://github.com/boto/botocore/blob/develop/botocore/retryhandler.py
+RETRIABLE_ERROR_CODES = {
Review Comment:
Must we mantain the list from our side? If a new code would be introduced we
won't get it.
I wonder if it make sense, maybe, to ask upstream to maintain the list from
thier side and we will import it?
--
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]