From d702699751b8e52ac8e061639b6d50f0d9cd9c26 Mon Sep 17 00:00:00 2001 From: Ryan <33550432+RyanCargan@users.noreply.github.com> Date: Sat, 7 Mar 2026 20:10:44 +0530 Subject: [PATCH 1/2] Enhance troubleshooting section for Qdrant connection errors Added troubleshooting tips for 'Internal Server Error' when connecting to Qdrant, including version compatibility and Docker image pinning. --- docs/features/codebase-indexing.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/features/codebase-indexing.mdx b/docs/features/codebase-indexing.mdx index 90ba8bc7..32606355 100644 --- a/docs/features/codebase-indexing.mdx +++ b/docs/features/codebase-indexing.mdx @@ -285,6 +285,12 @@ Use natural language descriptions: - Ensure the key has necessary permissions - For Ollama, verify the service is running +**"Internal Server Error" when connecting to Qdrant** +- Potential causes include Roo Code's Qdrant client being incompatible with newer Qdrant server versions +- Check the [Roo Code releases](https://github.com/RooCodeInc/Roo-Code/releases) + for the supported Qdrant version, or pin your Docker image to a specific version + (e.g., `qdrant/qdrant:v1.13.6`) rather than using `latest` to fix this version of the issue + ### API Key Format Errors (“ByteString conversion”) - Symptom: Error mentions "ByteString conversion" during indexing or when saving settings @@ -364,4 +370,4 @@ Planned improvements: - Enhanced filtering options - Team collaboration features - VS Code native search integration -- Incremental re-indexing optimizations \ No newline at end of file +- Incremental re-indexing optimizations From d983408ba100e65745f541cba612188ec5cb54bf Mon Sep 17 00:00:00 2001 From: Ryan <33550432+RyanCargan@users.noreply.github.com> Date: Sat, 7 Mar 2026 20:31:38 +0530 Subject: [PATCH 2/2] Enhance troubleshooting steps for Qdrant connection errors Added instructions for checking developer tools in VS Code to troubleshoot Qdrant connection issues. --- docs/features/codebase-indexing.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/features/codebase-indexing.mdx b/docs/features/codebase-indexing.mdx index 32606355..60160253 100644 --- a/docs/features/codebase-indexing.mdx +++ b/docs/features/codebase-indexing.mdx @@ -287,9 +287,10 @@ Use natural language descriptions: **"Internal Server Error" when connecting to Qdrant** - Potential causes include Roo Code's Qdrant client being incompatible with newer Qdrant server versions -- Check the [Roo Code releases](https://github.com/RooCodeInc/Roo-Code/releases) - for the supported Qdrant version, or pin your Docker image to a specific version +- Check your editor's dev tools console logs for the supported Qdrant version, and pin your Docker image to a specific version (e.g., `qdrant/qdrant:v1.13.6`) rather than using `latest` to fix this version of the issue + - For VS Code: Open Command Palette with Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac). + - Type `Developer: Toggle Developer Tools` and select command from list. ### API Key Format Errors (“ByteString conversion”)