Skip to content

Commit 0d21526

Browse files
authored
fix serde of RemoteDocLevelMonitorInput (#666)
Signed-off-by: Subhobrata Dey <[email protected]>
1 parent 79994f6 commit 0d21526

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/kotlin/org/opensearch/commons/alerting/model/remote/monitors/RemoteDocLevelMonitorInput.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ data class RemoteDocLevelMonitorInput(val input: BytesReference, val docLevelMon
6868
when (fieldName) {
6969
RemoteMonitorInput.INPUT_FIELD -> bytes = xcp.binaryValue()
7070
RemoteMonitorInput.INPUT_SIZE -> size = xcp.intValue()
71-
Input.Type.DOCUMENT_LEVEL_INPUT.value -> docLevelMonitorInput = DocLevelMonitorInput.parse(xcp)
71+
Input.Type.DOCUMENT_LEVEL_INPUT.value -> {
72+
docLevelMonitorInput = DocLevelMonitorInput.parse(xcp)
73+
XContentParserUtils.ensureExpectedToken(XContentParser.Token.END_OBJECT, xcp.nextToken(), xcp)
74+
}
7275
}
7376
}
7477
val input = BytesReference.fromByteBuffer(ByteBuffer.wrap(bytes, 0, size))

0 commit comments

Comments
 (0)