We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131a42c commit b8bf5b8Copy full SHA for b8bf5b8
mcp_servers/codeql/mcp_server.py
@@ -64,7 +64,7 @@ def _resolve_db_path(relative_db_path: str | Path):
64
absolute_path = CODEQL_DBS_BASE_PATH / relative_db_path
65
if not absolute_path.is_dir():
66
_debug_log(f"Database path not found: {absolute_path}")
67
- raise RuntimeError('Error: Database not found!')
+ raise RuntimeError(f"Error: Database not found at {absolute_path}!")
68
return absolute_path
69
70
0 commit comments