mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
[ML] Write null instead of false for optional boolean that was removed
Original commit: elastic/x-pack-elasticsearch@43f5fc04bd
This commit is contained in:
parent
1d33fb8b8b
commit
29811ea1d8
@ -160,7 +160,7 @@ public class DatafeedUpdate implements Writeable, ToXContent {
|
||||
out.writeOptionalVInt(scrollSize);
|
||||
if (out.getVersion().before(Version.V_5_5_0)) {
|
||||
// TODO for former _source param - remove in v7.0.0
|
||||
out.writeOptionalBoolean(false);
|
||||
out.writeOptionalBoolean(null);
|
||||
}
|
||||
out.writeOptionalWriteable(chunkingConfig);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user