Skip to content

Commit 563c2d8

Browse files
Remove recent_data_last_72h check
1 parent 3dddf8a commit 563c2d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

airflow/dags/secmar_checks.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ def checks():
107107
where op.latitude is not null
108108
and (stats.distance_cote_milles_nautiques is null or stats.distance_cote_metres is null)
109109
""",
110-
"recent_data_last_72h": """
111-
select count(1) > 0
112-
from operations
113-
where date_heure_reception_alerte > current_date - interval '2 day'
114-
""",
110+
#"recent_data_last_72h": """
111+
# select count(1) > 0
112+
# from operations
113+
# where date_heure_reception_alerte > current_date - interval '2 day'
114+
#""",
115115
"school_holidays_over_last_3_months": """
116116
select count(1) > 0
117117
from operations_stats

0 commit comments

Comments
 (0)