branch: externals/vecdb
commit 3d3ce2816497be27aeb7d12b185207097ffd8374
Author: Andrew Hyatt <ahy...@gmail.com>
Commit: Andrew Hyatt <ahy...@gmail.com>

    Fix qdrant file header, make delete call synchronous
---
 embed-qdrant.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/embed-qdrant.el b/embed-qdrant.el
index 9e7672d490..e5fb029f9c 100644
--- a/embed-qdrant.el
+++ b/embed-qdrant.el
@@ -1,4 +1,4 @@
-;;; embed-db.el --- An interface to embedding databases -*- lexical-binding: 
t; -*-
+;;; embed-qdrant.el --- An interface to the qdrant databases -*- 
lexical-binding: t; -*-
 
 ;; Copyright (c) 2025  Free Software Foundation, Inc.
 
@@ -76,7 +76,8 @@ properties of the collection."
 (cl-defmethod embed-db-delete ((provider embed-qdrant-provider)
                                (collection embed-db-collection))
   "Delete a collection from the qdrant database."
-  (embed-qdrant-call provider 'delete (concat "/collections/" 
(embed-db-collection-name collection))))
+  (embed-qdrant-call provider 'delete (concat "/collections/" 
(embed-db-collection-name collection))
+                     nil t))
 
 (cl-defmethod embed-db-exists ((provider embed-qdrant-provider)
                                (collection embed-db-collection))

Reply via email to