Skip to content

Commit

Permalink
Merge pull request #31 from zc277584121/main
Browse files Browse the repository at this point in the history
no need to flush
  • Loading branch information
jaelgu authored Aug 22, 2024
2 parents 9ee4d8d + 0263761 commit 04d72c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/milvus_haystack/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present Tuana Celik <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
__version__ = "0.0.9"
__version__ = "0.0.10"
1 change: 0 additions & 1 deletion src/milvus_haystack/document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ def write_documents(self, documents: List[Document], policy: DuplicatePolicy = D
except MilvusException as err:
logger.error("Failed to insert batch starting at entity: %s/%s", i, total_count)
raise err
self.col.flush()
return len(wrote_ids)

def delete_documents(self, document_ids: List[str]) -> None:
Expand Down

0 comments on commit 04d72c1

Please sign in to comment.