Method
transform_first_chunk
(
self,
status_code: int,
headers: httputil.HTTPHeaders,
chunk: bytes,
finishing: bool,
)
Source from the content-addressed store, hash-verified
| 3273 | pass |
| 3274 | |
| 3275 | def transform_first_chunk( |
| 3276 | self, |
| 3277 | status_code: int, |
| 3278 | headers: httputil.HTTPHeaders, |
| 3279 | chunk: bytes, |
| 3280 | finishing: bool, |
| 3281 | ) -> Tuple[int, httputil.HTTPHeaders, bytes]: |
| 3282 | return status_code, headers, chunk |
| 3283 | |
| 3284 | def transform_chunk(self, chunk: bytes, finishing: bool) -> bytes: |
| 3285 | return chunk |
Tested by
no test coverage detected