File tree 1 file changed +2
-2
lines changed
server/src/main/java/org/opensearch/action/admin/cluster/health
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public ClusterHealthRequest(StreamInput in) throws IOException {
115
115
if (in .getVersion ().onOrAfter (Version .V_2_6_0 )) {
116
116
ensureNodeWeighedIn = in .readBoolean ();
117
117
}
118
- if (in .getVersion ().onOrAfter (Version .V_3_0_0 )) {
118
+ if (in .getVersion ().onOrAfter (Version .V_2_17_0 )) {
119
119
applyLevelAtTransportLayer = in .readBoolean ();
120
120
}
121
121
}
@@ -153,7 +153,7 @@ public void writeTo(StreamOutput out) throws IOException {
153
153
if (out .getVersion ().onOrAfter (Version .V_2_6_0 )) {
154
154
out .writeBoolean (ensureNodeWeighedIn );
155
155
}
156
- if (out .getVersion ().onOrAfter (Version .V_3_0_0 )) {
156
+ if (out .getVersion ().onOrAfter (Version .V_2_17_0 )) {
157
157
out .writeBoolean (applyLevelAtTransportLayer );
158
158
}
159
159
}
You can’t perform that action at this time.
0 commit comments