An HTTP error has occurred, e.g. invalid server responses, or interrupted connections. This is distinct from a valid server HTTP error response, which is simply a response with an HTTP error code. Every flow will receive either an error or an response event, but not both.
| 54 | |
| 55 | @dataclass |
| 56 | class HttpErrorHook(commands.StartHook): |
| 57 | """ |
| 58 | An HTTP error has occurred, e.g. invalid server responses, or |
| 59 | interrupted connections. This is distinct from a valid server HTTP |
| 60 | error response, which is simply a response with an HTTP error code. |
| 61 | |
| 62 | Every flow will receive either an error or an response event, but not both. |
| 63 | """ |
| 64 | |
| 65 | name = "error" |
| 66 | flow: http.HTTPFlow |
| 67 | |
| 68 | |
| 69 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…