Hello,
Running into a use case that I’m having a hard time finding info for. I’m currently interacting with a system that returns a chunked transfer response when a GET is performed:
- Connected to localhost (::1) port 8080 (#0)
GET HTTP/1.1
Host: localhost:8080
User-Agent: curl/7.43.0
Accept: /
HTTP/1.1 200 OK
Content-Type: application/json
Content-Disposition: attachment; filename=json.json
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
Server:
Transfer-Encoding: chunked
Each chunk then contains a message that is being streamed. Gatling doesn’t currently seem to run checks until a response is fully received, which never happens since the connection is kept open for streaming. Is there something that I can do so that I can check the body as a chunk arrives?
Thanks