diff --git a/server/src/main/java/org/elasticsearch/cluster/coordination/NodeJoinExecutor.java b/server/src/main/java/org/elasticsearch/cluster/coordination/NodeJoinExecutor.java index 0dea98f40f56f..1eae5ef61ba3f 100644 --- a/server/src/main/java/org/elasticsearch/cluster/coordination/NodeJoinExecutor.java +++ b/server/src/main/java/org/elasticsearch/cluster/coordination/NodeJoinExecutor.java @@ -161,7 +161,6 @@ public ClusterState execute(BatchExecutionContext batchExecutionContex // update the node's feature set if it has one // this can happen if the master has just moved from a pre-features version to a post-features version - assert Version.V_8_12_0.onOrBefore(Version.CURRENT) : "This can be removed once 8.12.0 is no longer a valid version"; if (Objects.equals(nodeFeatures.get(node.getId()), nodeJoinTask.features()) == false) { logger.debug("updating node [{}] features {}", node.getId(), nodeJoinTask.features()); nodeFeatures.put(node.getId(), nodeJoinTask.features());