From 61053279d2ac23c6db25710640039bc26d8c4972 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Tue, 19 May 2026 23:36:35 +0800 Subject: [PATCH] auto-sync: 2026-05-19 23:36:35 --- src/daemon/ticker.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/daemon/ticker.py b/src/daemon/ticker.py index d2b949f..0b2373e 100644 --- a/src/daemon/ticker.py +++ b/src/daemon/ticker.py @@ -276,9 +276,11 @@ class Ticker: finally: conn2.close() for row in done_tasks: - task = Blackboard(db_path).get_task(row[0]) - if task: - self.experience_distiller.distill_from_task(task) + t = Blackboard(db_path).get_task(row[0]) + if t: + self.experience_distiller.distill_from_task( + task_id=t.id, task_title=t.title, task_type=t.task_type + ) except Exception as e: logger.warning("ExperienceDistiller error for %s: %s", project_id, e)