auto-sync: 2026-05-19 23:36:35

This commit is contained in:
cfdaily
2026-05-19 23:36:35 +08:00
parent 75f68d147b
commit 61053279d2
+5 -3
View File
@@ -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)