mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-07 11:08:20 +00:00
missing await
Signed-off-by: Daniele Martinoli <dmartino@redhat.com>
This commit is contained in:
parent
1d3fccff20
commit
5b461e2981
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue