File tree 2 files changed +4
-4
lines changed
rest-api-spec/src/main/resources/rest-api-spec/test/indices.flush
server/src/main/java/org/elasticsearch/index/flush
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 25
25
---
26
26
" Flush stats " :
27
27
- skip :
28
- version : " - 6.99 .99"
29
- reason : periodic flush stats is introduced in 7 .0
28
+ version : " - 6.2 .99"
29
+ reason : periodic flush stats is introduced in 6.3 .0
30
30
- do :
31
31
indices.create :
32
32
index : test
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ static final class Fields {
114
114
public void readFrom (StreamInput in ) throws IOException {
115
115
total = in .readVLong ();
116
116
totalTimeInMillis = in .readVLong ();
117
- if (in .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
117
+ if (in .getVersion ().onOrAfter (Version .V_6_3_0 )) {
118
118
periodic = in .readVLong ();
119
119
}
120
120
}
@@ -123,7 +123,7 @@ public void readFrom(StreamInput in) throws IOException {
123
123
public void writeTo (StreamOutput out ) throws IOException {
124
124
out .writeVLong (total );
125
125
out .writeVLong (totalTimeInMillis );
126
- if (out .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
126
+ if (out .getVersion ().onOrAfter (Version .V_6_3_0 )) {
127
127
out .writeVLong (periodic );
128
128
}
129
129
}
You can’t perform that action at this time.
0 commit comments