File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/features Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public class FeatureService {
3232 /**
3333 * A feature indicating that node features are supported.
3434 */
35- public static final NodeFeature FEATURES_SUPPORTED = new NodeFeature ("features_supported" );
35+ public static final NodeFeature FEATURES_SUPPORTED = new NodeFeature ("features_supported" , true );
3636 public static final NodeFeature TEST_FEATURES_ENABLED = new NodeFeature ("test_features_enabled" );
3737
3838 private static final Logger logger = LogManager .getLogger (FeatureService .class );
Original file line number Diff line number Diff line change 1717 * @param id The feature id. Must be unique in the node.
1818 * @param assumedAfterNextCompatibilityBoundary
1919 * {@code true} if this feature is removed at the next compatibility boundary (ie next major version),
20- * and so should be assumed to be true for all nodes after that boundary.
20+ * and so should be assumed to be met by all nodes after that boundary, even if they don't publish it .
2121 */
2222public record NodeFeature (String id , boolean assumedAfterNextCompatibilityBoundary ) {
2323
You can’t perform that action at this time.
0 commit comments