(self, details)
| 41 | exit(1) |
| 42 | |
| 43 | def connection_error_retry(self, details): |
| 44 | self._logger.error( |
| 45 | "Connection Error encountered. Retrying in {wait:0.1f} seconds".format( |
| 46 | **details |
| 47 | ) |
| 48 | ) |
| 49 | |
| 50 | def backoff_giveup(self, details): |
| 51 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected