We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca28e20 commit 4213f24Copy full SHA for 4213f24
src/main/kotlin/org/opensearch/indexmanagement/transform/model/Transform.kt
@@ -363,7 +363,7 @@ data class Transform(
363
groups.add(Dimension.parse(xcp))
364
}
365
366
- AGGREGATIONS_FIELD -> aggregations = AggregatorFactories.parseAggregators(xcp)
+ AGGREGATIONS_FIELD -> AggregatorFactories.parseAggregators(xcp)?.let { aggregations = it }
367
CONTINUOUS_FIELD -> continuous = xcp.booleanValue()
368
USER_FIELD -> {
369
user = if (xcp.currentToken() == Token.VALUE_NULL) null else User.parse(xcp)
0 commit comments