(flow: HTTPFlow)
| 974 | headers2 = [*example_request_headers, (b"x-order", b"2")] |
| 975 | |
| 976 | def kill(flow: HTTPFlow): |
| 977 | # Can't use flow.kill() here because that currently still depends on a reply object. |
| 978 | flow.error = Error(Error.KILLED_MESSAGE) |
| 979 | |
| 980 | assert ( |
| 981 | playbook |
nothing calls this directly
no test coverage detected
searching dependent graphs…