(self)
| 348 | await self._insert_done() |
| 349 | |
| 350 | async def _insert_start(self): |
| 351 | tasks = [] |
| 352 | for storage_inst in [ |
| 353 | self.chunk_entity_relation_graph, |
| 354 | ]: |
| 355 | if storage_inst is None: |
| 356 | continue |
| 357 | tasks.append(cast(StorageNameSpace, storage_inst).index_start_callback()) |
| 358 | await asyncio.gather(*tasks) |
| 359 | |
| 360 | async def _insert_done(self): |
| 361 | tasks = [] |
no test coverage detected