File tree 1 file changed +2
-2
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ilm
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ public IndexLifecycleExplainResponse(StreamInput in) throws IOException {
174
174
stepTime = in .readOptionalLong ();
175
175
stepInfo = in .readOptionalBytesReference ();
176
176
phaseExecutionInfo = in .readOptionalWriteable (PhaseExecutionInfo ::new );
177
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
177
+ if (in .getVersion ().onOrAfter (Version .V_7_6_0 )) {
178
178
isAutoRetryableError = in .readOptionalBoolean ();
179
179
failedStepRetryCount = in .readOptionalVInt ();
180
180
} else {
@@ -214,7 +214,7 @@ public void writeTo(StreamOutput out) throws IOException {
214
214
out .writeOptionalLong (stepTime );
215
215
out .writeOptionalBytesReference (stepInfo );
216
216
out .writeOptionalWriteable (phaseExecutionInfo );
217
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
217
+ if (out .getVersion ().onOrAfter (Version .V_7_6_0 )) {
218
218
out .writeOptionalBoolean (isAutoRetryableError );
219
219
out .writeOptionalVInt (failedStepRetryCount );
220
220
}
You can’t perform that action at this time.
0 commit comments