Skip to content

Commit 1a9edb1

Browse files
committed
Fix parsing
1 parent fc62473 commit 1a9edb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ilm/IndexLifecycleExplainResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class IndexLifecycleExplainResponse implements ToXContentObject, Writeabl
8080
(BytesReference) a[11],
8181
(BytesReference) a[21],
8282
(PhaseExecutionInfo) a[12],
83-
(boolean) a[22]
83+
Objects.requireNonNullElse((Boolean) a[22], false)
8484
// a[13] == "age"
8585
// a[20] == "time_since_index_creation"
8686
)

0 commit comments

Comments
 (0)