fix(cache-qdrant-semantic): annotate indexing wait payloads

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 21:44:34 +00:00
parent 6a06f69972
commit b71e64446c

View file

@ -313,7 +313,7 @@ class QdrantSemanticCache(BaseCache):
self.sync_client.put(
url=f"{self.qdrant_api_base}/collections/{self.collection_name}/points",
headers=self.headers,
params={"wait": "true"},
params={"wait": "true"}, # mutable-ok: Qdrant requires an explicit indexing wait
json=data,
)
@ -423,7 +423,7 @@ class QdrantSemanticCache(BaseCache):
await self.async_client.put(
url=f"{self.qdrant_api_base}/collections/{self.collection_name}/points",
headers=self.headers,
params={"wait": "true"},
params={"wait": "true"}, # mutable-ok: Qdrant requires an explicit indexing wait
json=data,
)