This is an automated email from the ASF dual-hosted git repository.
o-nikolas 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 5c7be57d8bb Fix smus_notebook system test failure in deferrable CI
rotation (#67568)
5c7be57d8bb is described below
commit 5c7be57d8bbe90658ec49c5f6636f8a7153fdccb
Author: Sean Ghaeli <[email protected]>
AuthorDate: Tue May 26 12:57:55 2026 -0700
Fix smus_notebook system test failure in deferrable CI rotation (#67568)
Two operator instances were missing explicit `deferrable=False`, causing
them to pick up the global `DEFAULT_DEFERRABLE=true` when CI randomizes
the deferrable flag. The deferrable path is not tested for this operator.
Co-authored-by: Sean Ghaeli <[email protected]>
---
.../system/amazon/aws/example_sagemaker_unified_studio_notebook.py | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio_notebook.py
b/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio_notebook.py
index ae8baefe7ae..3521d1d9862 100644
---
a/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio_notebook.py
+++
b/providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio_notebook.py
@@ -146,6 +146,7 @@ with DAG(
domain_identifier=domain_id,
owning_project_identifier=project_id,
wait_for_completion=True,
+ deferrable=False,
)
run_notebook_b = SageMakerUnifiedStudioNotebookOperator(
@@ -159,6 +160,7 @@ with DAG(
"employee_age": "{{
task_instance.xcom_pull(task_ids='notebook-a-task', key='NOTEBOOK_OUTPUT.age')
}}",
},
wait_for_completion=True,
+ deferrable=False,
)
# [END howto_operator_sagemaker_unified_studio_notebook_pass_outputs]