Skip to content
Snippets Groups Projects
Commit 466fd15f authored by Aivaras Sev's avatar Aivaras Sev
Browse files

Terms aggregation size may be 0.

"If set to 0, the size will be set to Integer.MAX_VALUE"
parent 5984d03f
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ class TermsAggregation extends AbstractAggregation
];
}
if ($this->size) {
if ($this->size !== null) {
$data['size'] = $this->size;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment