From 5b461e2981caa76fb4277896b2c14274e46ae7de Mon Sep 17 00:00:00 2001 From: Daniele Martinoli Date: Mon, 17 Mar 2025 19:11:07 +0100 Subject: [PATCH] missing await Signed-off-by: Daniele Martinoli --- llama_stack/providers/remote/vector_io/qdrant/qdrant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,