File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/opensearch/index/merge Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public MergeStats(StreamInput in) throws IOException {
82
82
totalStoppedTimeInMillis = in .readVLong ();
83
83
totalThrottledTimeInMillis = in .readVLong ();
84
84
totalBytesPerSecAutoThrottle = in .readVLong ();
85
- if (in .getVersion ().onOrAfter (Version .V_3_0_0 )) {
85
+ if (in .getVersion ().onOrAfter (Version .V_2_11_0 )) {
86
86
unreferencedFileCleanUpsPerformed = in .readOptionalVLong ();
87
87
}
88
88
}
@@ -297,7 +297,7 @@ public void writeTo(StreamOutput out) throws IOException {
297
297
out .writeVLong (totalStoppedTimeInMillis );
298
298
out .writeVLong (totalThrottledTimeInMillis );
299
299
out .writeVLong (totalBytesPerSecAutoThrottle );
300
- if (out .getVersion ().onOrAfter (Version .V_3_0_0 )) {
300
+ if (out .getVersion ().onOrAfter (Version .V_2_11_0 )) {
301
301
out .writeOptionalVLong (unreferencedFileCleanUpsPerformed );
302
302
}
303
303
}
You can’t perform that action at this time.
0 commit comments