| 31 | |
| 32 | # Data structure for representing the metadata of requests that result in a retry. |
| 33 | class RequestHistory(typing.NamedTuple): |
| 34 | method: str | None |
| 35 | url: str | None |
| 36 | error: Exception | None |
| 37 | status: int | None |
| 38 | redirect_location: str | None |
| 39 | |
| 40 | |
| 41 | class Retry: |
no outgoing calls