(task_id: str)
| 2819 | "write_feishu": write_feishu, |
| 2820 | "created_at": now, |
| 2821 | "updated_at": now, |
| 2822 | } |
| 2823 | thread = threading.Thread(target=_finish_reading_task, args=(task_id,), daemon=True) |
| 2824 | task["thread"] = thread |
| 2825 | with _READING_TASK_LOCK: |
| 2826 | _READING_TASKS[task_id] = task |
nothing calls this directly
no test coverage detected