diff --git a/llama_stack/providers/remote/vector_io/qdrant/qdrant.py b/llama_stack/providers/remote/vector_io/qdrant/qdrant.py index 70e75a420..9e7788dc0 100644 --- a/llama_stack/providers/remote/vector_io/qdrant/qdrant.py +++ b/llama_stack/providers/remote/vector_io/qdrant/qdrant.py @@ -112,7 +112,7 @@ class QdrantVectorIOAdapter(VectorIO, VectorDBsProtocolPrivate): self.client = AsyncQdrantClient(**self.config.model_dump(exclude_none=True)) async def shutdown(self) -> None: - self.client.close() + await self.client.close() async def register_vector_db( self,