File tree 1 file changed +2
-2
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/analytics/action 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ public NodeResponse(StreamInput in) throws IOException {
147
147
stringStatsUsage = 0 ;
148
148
topMetricsUsage = 0 ;
149
149
}
150
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) { // Will drop to 7.8.0 after backport
150
+ if (in .getVersion ().onOrAfter (Version .V_7_8_0 )) {
151
151
ttestUsage = in .readVLong ();
152
152
} else {
153
153
ttestUsage = 0 ;
@@ -165,7 +165,7 @@ public void writeTo(StreamOutput out) throws IOException {
165
165
out .writeVLong (stringStatsUsage );
166
166
out .writeVLong (topMetricsUsage );
167
167
}
168
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) { // Will drop to 7.8.0 after backport
168
+ if (out .getVersion ().onOrAfter (Version .V_7_8_0 )) {
169
169
out .writeVLong (ttestUsage );
170
170
}
171
171
}
You can’t perform that action at this time.
0 commit comments