Commit any pending transaction to the database.
(self)
| 327 | raise ex.with_traceback(None) |
| 328 | |
| 329 | async def commit(self) -> None: |
| 330 | """Commit any pending transaction to the database.""" |
| 331 | async with self.lock: |
| 332 | await self.wait(self._commit_gen()) |
| 333 | |
| 334 | async def rollback(self) -> None: |
| 335 | """Roll back to the start of any pending transaction.""" |
no test coverage detected