fixed edge

This commit is contained in:
Yannick Stephan
2025-02-17 23:20:10 +01:00
parent efb28c8003
commit 80272cbf16
6 changed files with 15 additions and 15 deletions

View File

@@ -67,4 +67,4 @@ class JsonDocStatusStorage(DocStatusStorage):
async def delete(self, doc_ids: list[str]):
for doc_id in doc_ids:
self._data.pop(doc_id, None)
await self.index_done_callback()
await self.index_done_callback()

View File

@@ -117,6 +117,7 @@ class MongoKVStorage(BaseKVStorage):
# Mongo handles persistence automatically
pass
@final
@dataclass
class MongoDocStatusStorage(DocStatusStorage):

View File

@@ -320,6 +320,7 @@ class OracleKVStorage(BaseKVStorage):
# Oracle handles persistence automatically
pass
@final
@dataclass
class OracleVectorDBStorage(BaseVectorStorage):

View File

@@ -300,7 +300,8 @@ class PGKVStorage(BaseKVStorage):
async def index_done_callback(self) -> None:
# PG handles persistence automatically
pass
@final
@dataclass
class PGVectorStorage(BaseVectorStorage):

View File

@@ -214,6 +214,7 @@ class TiDBKVStorage(BaseKVStorage):
# Ti handles persistence automatically
pass
@final
@dataclass
class TiDBVectorDBStorage(BaseVectorStorage):