fix: Update Qdrant client initialization to include port in the URL
This commit is contained in:
parent
3d59c78eb9
commit
abb091685e
|
|
@ -56,7 +56,7 @@ class Database:
|
||||||
# Qdrant
|
# Qdrant
|
||||||
try:
|
try:
|
||||||
self.qdrant = QdrantClient(
|
self.qdrant = QdrantClient(
|
||||||
url=f"https://{settings.qdrant_host}",
|
url=f"http://{settings.qdrant_host}:{settings.qdrant_port}",
|
||||||
timeout=5,
|
timeout=5,
|
||||||
)
|
)
|
||||||
collections = self.qdrant.get_collections()
|
collections = self.qdrant.get_collections()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue