We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 is not sufficient:
if (!isset($payload[$hash])) { continue; }
This can be circumvented by adding empty:
if (!isset($payload[$hash]) || empty($payload[$hash])) { continue; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem: Publishing changes might lead to the following ElasticSearch Exception:
This happens if the payload is empty (we don't why this is). In this case the check in Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer is not sufficient:
This can be circumvented by adding empty:
The text was updated successfully, but these errors were encountered: