Github user MikeThomsen commented on the issue:
https://github.com/apache/nifi/pull/2517
@ottobackwards
> @JohannesDaniel If there are no results from a page request, does that
mean there is no output? I ask because I have a PR for that use case with
QueryElasticsearchHttp.
There's a clause at the very bottom that will ensure they get sent. See:
```
if (!flowFileResponse.isPenalized()) {
session.transfer(flowFileResponse, RESULTS);
}
```---
