File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/analytics/action Expand file tree Collapse file tree 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 {
147147 stringStatsUsage = 0 ;
148148 topMetricsUsage = 0 ;
149149 }
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 )) {
151151 ttestUsage = in .readVLong ();
152152 } else {
153153 ttestUsage = 0 ;
@@ -165,7 +165,7 @@ public void writeTo(StreamOutput out) throws IOException {
165165 out .writeVLong (stringStatsUsage );
166166 out .writeVLong (topMetricsUsage );
167167 }
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 )) {
169169 out .writeVLong (ttestUsage );
170170 }
171171 }
You can’t perform that action at this time.
0 commit comments