From e8425218e24a877031212affd6d8306640ee35d7 Mon Sep 17 00:00:00 2001 From: Tim O'Farrell Date: Tue, 17 Feb 2026 17:22:54 +0000 Subject: [PATCH] Remove alembic errors dumped into logs by cron jobs (#12900) --- enterprise/sync/clean_proactive_convo_table.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/enterprise/sync/clean_proactive_convo_table.py b/enterprise/sync/clean_proactive_convo_table.py index f2bdf8c0ca..6663588aab 100644 --- a/enterprise/sync/clean_proactive_convo_table.py +++ b/enterprise/sync/clean_proactive_convo_table.py @@ -2,10 +2,13 @@ import asyncio from storage.proactive_conversation_store import ProactiveConversationStore +from openhands.core.logger import openhands_logger + OLDER_THAN = 30 # 30 minutes async def main(): + openhands_logger.info('clean_proactive_convo_table') convo_store = ProactiveConversationStore() await convo_store.clean_old_convos(older_than_minutes=OLDER_THAN)