(self, retries)
| 1565 | return request |
| 1566 | |
| 1567 | def _fail_wait(self, retries): |
| 1568 | # Wait a few seconds. The more it fails the more we wait. |
| 1569 | return (self.config.max_retries - retries + 1) * 3 |
| 1570 | |
| 1571 | def _http_redirection_handler(self, request, response, fn, *args, **kwargs): |
| 1572 | # Region info might already be available through the x-amz-bucket-region header |
no outgoing calls
no test coverage detected