Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion polylogue/maintenance/rebuild_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def _repopulate_bulk_build_derived_state(index_path: Path) -> dict[str, float]:
with contextlib.closing(sqlite3.connect(index_path, timeout=600)) as conn:
conn.execute("PRAGMA busy_timeout = 600000")
started_at = time.perf_counter()
rebuild_fts_index_sync(conn, resume_from_empty_message_index=True)
rebuild_fts_index_sync(conn)
timings_s["fts"] = time.perf_counter() - started_at
started_at = time.perf_counter()
rebuild_command_trigram_index_sync(conn)
Expand Down