There was an error while loading. Please reload this page.
1 parent d3fcff3 commit 67af069Copy full SHA for 67af069
docs/changelog/124225.yaml
@@ -0,0 +1,5 @@
1
+pr: 124225
2
+summary: "[Inference API] Fix output stream ordering in `InferenceActionProxy`"
3
+area: Machine Learning
4
+type: bug
5
+issues: []
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/InferenceActionProxy.java
@@ -105,8 +105,8 @@ public ActionRequestValidationException validate() {
105
@Override
106
public void writeTo(StreamOutput out) throws IOException {
107
super.writeTo(out);
108
- out.writeString(inferenceEntityId);
109
taskType.writeTo(out);
+ out.writeString(inferenceEntityId);
110
out.writeBytesReference(content);
111
XContentHelper.writeTo(out, contentType);
112
out.writeTimeValue(timeout);
0 commit comments