From 9fd146440f1db1ff5f52e29475783aa963f59472 Mon Sep 17 00:00:00 2001 From: rene Date: Fri, 8 May 2026 15:13:50 +0200 Subject: [PATCH] =?UTF-8?q?Config:=20VDH=20Event-Import=20w=C3=B6chentlich?= =?UTF-8?q?=20=E2=86=92=20quartalsweise=20(Jan/Apr/Jul/Okt,=202.=20des=20M?= =?UTF-8?q?onats=2002:00)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/scheduler.py b/backend/scheduler.py index 22d1533..f0487c8 100644 --- a/backend/scheduler.py +++ b/backend/scheduler.py @@ -54,7 +54,7 @@ def start(): ) _scheduler.add_job( _job_import_events, - CronTrigger(day_of_week='sun', hour=2), # jeden Sonntag 02:00 Uhr + CronTrigger(month="1,4,7,10", day=2, hour=2), # quartalsweise Jan/Apr/Jul/Okt id="import_events", replace_existing=True, misfire_grace_time=7200,