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 9d92feda7f Fix Glue system test (#40612)
9d92feda7f is described below

commit 9d92feda7fae0f014743153ce69656eb339fc420
Author: D. Ferruzzi <[email protected]>
AuthorDate: Thu Jul 4 14:30:28 2024 -0700

    Fix Glue system test (#40612)
    
    The new Sensor was not added to the chain(), causing it to fire off before 
the database it is supposed to watch is even created.
---
 tests/system/providers/amazon/aws/example_glue.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/system/providers/amazon/aws/example_glue.py 
b/tests/system/providers/amazon/aws/example_glue.py
index fb44ad248f..c16aaf8677 100644
--- a/tests/system/providers/amazon/aws/example_glue.py
+++ b/tests/system/providers/amazon/aws/example_glue.py
@@ -207,6 +207,7 @@ with DAG(
         # TEST BODY
         crawl_s3,
         wait_for_crawl,
+        wait_for_catalog_partition,
         submit_glue_job,
         wait_for_job,
         # TEST TEARDOWN

Reply via email to