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


##########
providers/amazon/src/airflow/providers/amazon/aws/operators/eks.py:
##########
@@ -1052,6 +1052,9 @@ def __init__(
         self.pod_name = pod_name
         self.aws_conn_id = aws_conn_id
         self.region = region
+        # Remove aws_conn_id and region from kwargs to avoid passing them to 
KubernetesPodOperator
+        kwargs.pop("aws_conn_id", None)
+        kwargs.pop("region", None)

Review Comment:
   Can you explain more about why this fixes the issue?



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