Backported the translog files age stats to v6.3.0

Relates #28613
This commit is contained in:
Nhat Nguyen 2018-02-16 10:50:53 -05:00
parent 0dd79028c9
commit 2f011295ec
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ public class TranslogStats implements Streamable, ToXContentFragment {
uncommittedOperations = numberOfOperations;
uncommittedSizeInBytes = translogSizeInBytes;
}
if (in.getVersion().onOrAfter(Version.V_7_0_0_alpha1)) {
if (in.getVersion().onOrAfter(Version.V_6_3_0)) {
earliestLastModifiedAge = in.readVLong();
}
}
@ -137,7 +137,7 @@ public class TranslogStats implements Streamable, ToXContentFragment {
out.writeVInt(uncommittedOperations);
out.writeVLong(uncommittedSizeInBytes);
}
if (out.getVersion().onOrAfter(Version.V_7_0_0_alpha1)) {
if (out.getVersion().onOrAfter(Version.V_6_3_0)) {
out.writeVLong(earliestLastModifiedAge);
}
}