o-nikolas commented on code in PR #61895:
URL: https://github.com/apache/airflow/pull/61895#discussion_r2806767442


##########
providers/amazon/tests/system/amazon/aws/example_ecs.py:
##########
@@ -182,6 +183,9 @@ def clean_logs(group_name: str):
     # [END howto_operator_ecs_run_task]
     # The default is 6 seconds between checks, which is very aggressive, 
setting to 60s to reduce throttling errors.
     run_task.waiter_delay = 60
+    run_task.retries = 4
+    retry_exponential_backoff = (True,)

Review Comment:
   Where is this variable used? Also the value being a tuple with True in it 
looks strange?
   
   Shouldn't it be this?:
   
   ```suggestion
       run_task.retry_exponential_backoff = True
   ```



-- 
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]

Reply via email to