You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public XContentParser parseObject() throws IOException {
assert currentToken() == Token.START_OBJECT;
parser.nextToken(); // Skip the outer START_OBJECT. Need to return on END_OBJECT.
builder.startObject();
That assert is useless in production if we're not guarding this entry-point. I'll add the appropriate check.
Describe the bug
Unbounded execution for write threads when parsing a flat_object field provided as array.
Ideally, this should error out gracefully.
Related component
Indexing
To Reproduce
Expected behavior
Error out due to lack of support.
Additional Details
Plugins
none
Screenshots
If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: