Problem: Publishing changes might lead to the following ElasticSearch Exception: ``` [type] => action_request_validation_exception [reason] => Validation Failed: 1: no requests added; ``` This happens if the payload is empty (we don't why this is). In this case the check in [Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer](https://github.com/Flowpack/Flowpack.ElasticSearch.ContentRepositoryAdaptor/blob/d9c1b777b529605725dd993220b843dcad4251e1/Classes/Indexer/NodeIndexer.php#L450) is not sufficient: ```php if (!isset($payload[$hash])) { continue; } ``` This can be circumvented by adding _empty_: ```php if (!isset($payload[$hash]) || empty($payload[$hash])) { continue; } ```