From 5fb82ec3b7ac1f3a1b647ea51b7a06da8c4ea7eb Mon Sep 17 00:00:00 2001 From: Victor Perron Date: Tue, 3 Sep 2024 08:58:11 +0200 Subject: [PATCH] chore(pipeline) : Forgot a last extra underscore Please just let me hang myself --- pipeline/dags/notify_rgpd_contacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/dags/notify_rgpd_contacts.py b/pipeline/dags/notify_rgpd_contacts.py index f4607879..62b0c825 100644 --- a/pipeline/dags/notify_rgpd_contacts.py +++ b/pipeline/dags/notify_rgpd_contacts.py @@ -23,7 +23,7 @@ def _sync_new_contacts_to_brevo(): potential_contacts = pg.hook().get_records( sql=( "SELECT courriel, ARRAY_AGG(contact_uid) as contact_uids " - "FROM public_intermediate.int__union__contacts " + "FROM public_intermediate.int__union_contacts " "GROUP BY courriel" ) )