Compute backoff in seconds upon failure
(self, failures: int)
| 20 | |
| 21 | @abstractmethod |
| 22 | def compute(self, failures: int) -> float: |
| 23 | """Compute backoff in seconds upon failure""" |
| 24 | pass |
| 25 | |
| 26 | |
| 27 | class ConstantBackoff(AbstractBackoff): |
no outgoing calls
no test coverage detected