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 4b1995d5d62 Fix system test bugs: bedrock_guardrail, glue_catalog,
s3_vectors (#66758)
4b1995d5d62 is described below
commit 4b1995d5d62210dcdccbafc81ecc8d9b376513a4
Author: Sean Ghaeli <[email protected]>
AuthorDate: Tue May 12 10:14:56 2026 -0700
Fix system test bugs: bedrock_guardrail, glue_catalog, s3_vectors (#66758)
Co-authored-by: Sean Ghaeli <[email protected]>
---
.../amazon/tests/system/amazon/aws/example_bedrock_guardrail.py | 6 ++++++
providers/amazon/tests/system/amazon/aws/example_glue_catalog.py | 1 +
providers/amazon/tests/system/amazon/aws/example_s3_vectors.py | 2 +-
3 files changed, 8 insertions(+), 1 deletion(-)
diff --git
a/providers/amazon/tests/system/amazon/aws/example_bedrock_guardrail.py
b/providers/amazon/tests/system/amazon/aws/example_bedrock_guardrail.py
index 6f94cc319db..eb2c8778992 100644
--- a/providers/amazon/tests/system/amazon/aws/example_bedrock_guardrail.py
+++ b/providers/amazon/tests/system/amazon/aws/example_bedrock_guardrail.py
@@ -84,6 +84,12 @@ with DAG(
guardrail_name=f"{env_id}-guardrail-updated",
blocked_input_messaging="Updated: input blocked.",
blocked_outputs_messaging="Updated: output blocked.",
+ content_policy_config={
+ "filtersConfig": [
+ {"type": "HATE", "inputStrength": "HIGH", "outputStrength":
"HIGH"},
+ {"type": "VIOLENCE", "inputStrength": "HIGH",
"outputStrength": "HIGH"},
+ ]
+ },
)
# [END howto_operator_bedrock_update_guardrail]
diff --git a/providers/amazon/tests/system/amazon/aws/example_glue_catalog.py
b/providers/amazon/tests/system/amazon/aws/example_glue_catalog.py
index fd5c3a55e6f..6eb736e1eed 100644
--- a/providers/amazon/tests/system/amazon/aws/example_glue_catalog.py
+++ b/providers/amazon/tests/system/amazon/aws/example_glue_catalog.py
@@ -75,6 +75,7 @@ with DAG(
"OutputFormat":
"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat",
"SerdeInfo": {"SerializationLibrary":
"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe"},
},
+ "PartitionKeys": [{"Name": "dt", "Type": "string"}],
"TableType": "EXTERNAL_TABLE",
}
diff --git a/providers/amazon/tests/system/amazon/aws/example_s3_vectors.py
b/providers/amazon/tests/system/amazon/aws/example_s3_vectors.py
index dda071944c8..7f53f14e2aa 100644
--- a/providers/amazon/tests/system/amazon/aws/example_s3_vectors.py
+++ b/providers/amazon/tests/system/amazon/aws/example_s3_vectors.py
@@ -65,7 +65,7 @@ with DAG(
vector_bucket_name=bucket_name,
index_name=index_name,
data_type="float32",
- dimension=128,
+ dimension=4,
distance_metric="cosine",
)
# [END howto_operator_s3vectors_create_index]