(self, headers_to_sign)
| 322 | return ' '.join(value.split()) |
| 323 | |
| 324 | def signed_headers(self, headers_to_sign): |
| 325 | headers = sorted(n.lower().strip() for n in set(headers_to_sign)) |
| 326 | return ';'.join(headers) |
| 327 | |
| 328 | def _is_streaming_checksum_payload(self, request): |
| 329 | checksum_context = request.context.get('checksum', {}) |
no outgoing calls
no test coverage detected