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 8c16340ca49 Fix dynamic glue rule set recommendations sensor config 
(#71117)
8c16340ca49 is described below

commit 8c16340ca4903e3974b5342c0fe8ca1f0534395f
Author: D. Ferruzzi <[email protected]>
AuthorDate: Mon Aug 10 07:24:35 2026 -0700

    Fix dynamic glue rule set recommendations sensor config (#71117)
---
 .../amazon/aws/example_glue_data_quality_with_recommendation.py      | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/providers/amazon/tests/system/amazon/aws/example_glue_data_quality_with_recommendation.py
 
b/providers/amazon/tests/system/amazon/aws/example_glue_data_quality_with_recommendation.py
index ccf4a63ca4c..732b1d5bec7 100644
--- 
a/providers/amazon/tests/system/amazon/aws/example_glue_data_quality_with_recommendation.py
+++ 
b/providers/amazon/tests/system/amazon/aws/example_glue_data_quality_with_recommendation.py
@@ -107,6 +107,11 @@ def glue_data_quality_recommendation_workflow():
     await_evaluation_run_sensor = GlueDataQualityRuleSetEvaluationRunSensor(
         task_id="await_evaluation_run_sensor",
         evaluation_run_id=start_evaluation_run.output,
+        # The ruleset is generated dynamically by Glue's recommendation engine 
and is
+        # non-deterministic, so recommended rules may not always pass against 
the sample
+        # data. This system test only needs to exercise the operators/sensors 
end-to-end,
+        # not assert that every recommended rule passes, so do not fail on 
rule failures.
+        verify_result_status=False,
     )
 
     chain(

Reply via email to