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 e24b2ed commit 48f6511Copy full SHA for 48f6511
lightrag/kg/qdrant_impl.py
@@ -90,7 +90,9 @@ def _find_legacy_collection(
90
# Try multiple naming patterns for backward compatibility
91
# More specific names (with workspace) have higher priority
92
candidates = [
93
- f"{workspace}_{namespace}" if workspace else None, # Old format with workspace - most specific
+ f"{workspace}_{namespace}"
94
+ if workspace
95
+ else None, # Old format with workspace - most specific
96
f"lightrag_vdb_{namespace}", # New legacy format
97
namespace, # Old format without workspace - most generic
98
]
0 commit comments