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 @@ -194,7 +194,7 @@ public IndexLifecycleExplainResponse(StreamInput in) throws IOException {
194
194
isAutoRetryableError = null ;
195
195
failedStepRetryCount = null ;
196
196
}
197
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
197
+ if (in .getVersion ().onOrAfter (Version .V_7_8_0 )) {
198
198
repositoryName = in .readOptionalString ();
199
199
snapshotName = in .readOptionalString ();
200
200
} else {
@@ -240,7 +240,7 @@ public void writeTo(StreamOutput out) throws IOException {
240
240
out .writeOptionalBoolean (isAutoRetryableError );
241
241
out .writeOptionalVInt (failedStepRetryCount );
242
242
}
243
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
243
+ if (out .getVersion ().onOrAfter (Version .V_7_8_0 )) {
244
244
out .writeOptionalString (repositoryName );
245
245
out .writeOptionalString (snapshotName );
246
246
}
You can’t perform that action at this time.
0 commit comments