(_req: Request, res: Response)
| 122 | } |
| 123 | |
| 124 | protected onHTTPTimeout(_req: Request, res: Response) { |
| 125 | this.log.error(`HTTP job has timedout, sending 429 response`); |
| 126 | return writeResponse(res, 408, 'Request has timed out'); |
| 127 | } |
| 128 | |
| 129 | protected onWebsocketTimeout(_req: Request, socket: stream.Duplex) { |
| 130 | this.log.error(`Websocket job has timedout, sending 429 response`); |
nothing calls this directly
no test coverage detected