We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa97c7 commit be95996Copy full SHA for be95996
server/src/main/java/org/elasticsearch/cluster/coordination/NodeJoinExecutor.java
@@ -161,7 +161,6 @@ public ClusterState execute(BatchExecutionContext<JoinTask> batchExecutionContex
161
162
// update the node's feature set if it has one
163
// this can happen if the master has just moved from a pre-features version to a post-features version
164
- assert Version.V_8_12_0.onOrBefore(Version.CURRENT) : "This can be removed once 8.12.0 is no longer a valid version";
165
if (Objects.equals(nodeFeatures.get(node.getId()), nodeJoinTask.features()) == false) {
166
logger.debug("updating node [{}] features {}", node.getId(), nodeJoinTask.features());
167
nodeFeatures.put(node.getId(), nodeJoinTask.features());
0 commit comments