o-nikolas commented on code in PR #62415:
URL: https://github.com/apache/airflow/pull/62415#discussion_r2848841117
##########
providers/amazon/tests/system/amazon/aws/example_emr_eks.py:
##########
@@ -173,6 +174,9 @@ def update_trust_policy_execution_role(cluster_name,
cluster_namespace, role_nam
if build.returncode != 0:
raise RuntimeError(err)
+ # Wait for IAM changes to propagate to avoid authentication failures
+ time.sleep(10)
Review Comment:
Were you able to test if 10s is enough? We could optionally make this a
variable through the context builder so that we can change the time easily
without needing to PR each time.
--
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]