This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new f55b8e4d03b Fix EKS system test xcom issue and standardize naming 
between tests (#61893)
f55b8e4d03b is described below

commit f55b8e4d03bd2400617561eff2d21fee2eed06e7
Author: D. Ferruzzi <[email protected]>
AuthorDate: Sun Feb 15 16:07:31 2026 -0800

    Fix EKS system test xcom issue and standardize naming between tests (#61893)
---
 .../tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py | 4 ++--
 .../amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py
 
b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py
index 6851f97f2fb..43e8f4a4fdb 100644
--- 
a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py
+++ 
b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py
@@ -116,8 +116,8 @@ with DAG(
     )
 
     start_pod = EksPodOperator(
-        task_id="start_pod",
-        pod_name="test_pod",
+        task_id="run_pod",
+        pod_name="run_pod",
         cluster_name=cluster_name,
         image="amazon/aws-cli:latest",
         cmds=["sh", "-c", "echo Test Airflow; date"],
diff --git 
a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py 
b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py
index 5a933be6bf8..e48243e81a2 100644
--- a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py
+++ b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py
@@ -135,8 +135,8 @@ with DAG(
 
     # [START howto_operator_eks_pod_operator]
     start_pod = EksPodOperator(
-        task_id="start_pod",
-        pod_name="test_pod",
+        task_id="run_pod",
+        pod_name="run_pod",
         cluster_name=cluster_name,
         image="amazon/aws-cli:latest",
         cmds=["sh", "-c", "echo Test Airflow; date"],

Reply via email to