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 46ee631c79 Fix failing config test in main after merging AWS Batch 
executor (#37923)
46ee631c79 is described below

commit 46ee631c794cfbe1793577171fcb9f6e8c615227
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Mar 6 02:03:14 2024 +0100

    Fix failing config test in main after merging AWS Batch executor (#37923)
    
    Related: #37618
---
 tests/core/test_configuration.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/core/test_configuration.py b/tests/core/test_configuration.py
index 595862c91a..7b810ba6e5 100644
--- a/tests/core/test_configuration.py
+++ b/tests/core/test_configuration.py
@@ -1601,6 +1601,7 @@ def test_sensitive_values():
     all_keys = {(s, k) for s, v in conf.configuration_description.items() for 
k in v.get("options")}
     suspected_sensitive = {(s, k) for (s, k) in all_keys if 
k.endswith(("password", "kwargs"))}
     exclude_list = {
+        ("aws_batch_executor", "submit_job_kwargs"),
         ("kubernetes_executor", "delete_option_kwargs"),
         ("aws_ecs_executor", "run_task_kwargs"),  # Only a constrained set of 
values, none are sensitive
     }

Reply via email to