Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/02-implementation/AGENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ schedule = ["24h", "6h"]
@property
def database_path(self) -> Path:
"""Get canonical database file path.

Automatically strips query parameters (e.g., ?mode=ro) from SQLite URLs
before extracting the file path. This prevents invalid file paths when
URLs include query parameters.
Expand Down Expand Up @@ -277,7 +277,7 @@ def init_db() -> None:

async def init_db_async() -> None:
"""Initialize database asynchronously (for FastAPI lifespan).

Runs migrations in a threadpool using asyncio.to_thread() to avoid
blocking the event loop.
"""
Expand Down
Loading