Skip to content

Commit 12c0bd5

Browse files
committed
Log the qdrant collections on connect
1 parent a506aee commit 12c0bd5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

plugins/qdrant/superduper_qdrant/qdrant.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ def __init__(
9090
if "timeout" not in config_dict:
9191
config_dict["timeout"] = 60 # 60 seconds timeout
9292
self.client = QdrantClient(**config_dict)
93+
94+
logging.info('Found these collections in the qdrant collection:')
95+
collections = self.client.get_collections()
96+
for collection in collections:
97+
logging.info(f" - {collection.name}")
98+
9399
self.identifier = identifier
94100
self.measure = measure
95101
self.batch_size = batch_size

0 commit comments

Comments
 (0)