MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / retryable_bulk

Method retryable_bulk

pymongo/asynchronous/bulk.py:590–601  ·  view source on GitHub ↗
(
            session: Optional[AsyncClientSession], conn: AsyncConnection, retryable: bool
        )

Source from the content-addressed store, hash-verified

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(

Callers

nothing calls this directly

Calls 1

_execute_commandMethod · 0.95

Tested by

no test coverage detected