From 3152bc23f484a8ca2f1358594772f8a960d84c30 Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 15 Apr 2026 00:58:43 +0900 Subject: [PATCH] =?UTF-8?q?chore(agent-office):=20=EC=A3=BC=EC=8B=9D=20?= =?UTF-8?q?=EB=89=B4=EC=8A=A4=20=EB=B8=8C=EB=A6=AC=ED=95=91=20=EC=8A=A4?= =?UTF-8?q?=EC=BC=80=EC=A4=84=2008:00=20=E2=86=92=2007:30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- agent-office/app/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-office/app/scheduler.py b/agent-office/app/scheduler.py index d89bec8..1c6b2d6 100644 --- a/agent-office/app/scheduler.py +++ b/agent-office/app/scheduler.py @@ -25,7 +25,7 @@ async def _run_blog_schedule(): await agent.on_schedule() def init_scheduler(): - scheduler.add_job(_run_stock_schedule, "cron", hour=8, minute=0, id="stock_news") + scheduler.add_job(_run_stock_schedule, "cron", hour=7, minute=30, id="stock_news") scheduler.add_job(_run_realestate_schedule, "cron", hour=9, minute=15, id="realestate_report") scheduler.add_job(_run_blog_schedule, "cron", hour=10, minute=0, id="blog_pipeline") scheduler.add_job(_check_idle_breaks, "interval", seconds=60, id="idle_check")