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

vincbeck 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 c6acb75a1bc SageMaker Unified Studios System Tests Update (#54038)
c6acb75a1bc is described below

commit c6acb75a1bc2d34de7919a10c0782bab951c02af
Author: Sean Ghaeli <[email protected]>
AuthorDate: Wed Aug 6 10:24:49 2025 -0700

    SageMaker Unified Studios System Tests Update (#54038)
---
 .../system/amazon/aws/example_sagemaker_unified_studio.py    | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git 
a/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio.py 
b/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio.py
index 0fc26d506b9..06cccd73652 100644
--- 
a/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio.py
+++ 
b/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio.py
@@ -142,7 +142,17 @@ with DAG(
         waiter_delay=5,  # optional
         deferrable=False,  # optional
         executor_config={  # optional
-            "overrides": {"containerOverrides": {"environment": 
mock_mwaa_environment_params}}
+            "overrides": {
+                "containerOverrides": [
+                    {
+                        "environment": [
+                            {"name": key, "value": value}
+                            for key, value in 
mock_mwaa_environment_params.items()
+                        ],
+                        "name": "ECSExecutorContainer",  # Necessary parameter
+                    }
+                ]
+            }
         },
     )
     # [END howto_operator_sagemaker_unified_studio_notebook]

Reply via email to