(self, attempt: int, exc: BaseException)
| 284 | await asyncio.sleep(min(5 * (attempt + 1), 30)) |
| 285 | |
| 286 | async def _transient_backoff(self, attempt: int, exc: BaseException) -> None: |
| 287 | await asyncio.sleep(min(2 * (attempt + 1), 10)) |
| 288 | |
| 289 | # ---- shared infrastructure ---------------------------------------------------- |
| 290 |