Skip to content

Commit 3c4f3cc

Browse files
committed
Change future and past thresholds
1 parent 15e53b2 commit 3c4f3cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dags/pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ def run_make_time_inconsistencies_analysis(
248248
op_kwargs={
249249
"clickhouse_url": Variable.get("clickhouse_url", default_var=""),
250250
"ts": "{{ ts }}",
251-
"future_threshold": 3600, # 1 hour
252-
"past_threshold": 3600, # 1 hour
251+
"future_threshold": 60 * 30, # 30 mins
252+
"past_threshold": 2 * 3600, # 2 hour
253253
},
254254
requirements=REQUIREMENTS,
255255
system_site_packages=False,

0 commit comments

Comments
 (0)