(
session: Optional[AsyncClientSession], conn: AsyncConnection, retryable: bool
)
| 588 | op_id = _randint() |
| 589 | |
| 590 | async def retryable_bulk( |
| 591 | session: Optional[AsyncClientSession], conn: AsyncConnection, retryable: bool |
| 592 | ) -> None: |
| 593 | await self._execute_command( |
| 594 | generator, |
| 595 | write_concern, |
| 596 | session, |
| 597 | conn, |
| 598 | op_id, |
| 599 | retryable, |
| 600 | full_result, |
| 601 | ) |
| 602 | |
| 603 | client = self.collection.database.client |
| 604 | _ = await client._retryable_write( |
nothing calls this directly
no test coverage detected