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 c0534f4 commit ce31997Copy full SHA for ce31997
server/src/main/java/org/elasticsearch/action/ActionModule.java
@@ -399,9 +399,6 @@ public class ActionModule extends AbstractModule {
399
400
static {
401
final String property = System.getProperty("es.datastreams_feature_flag_registered");
402
- if (Build.CURRENT.isSnapshot() && property != null) {
403
- throw new IllegalArgumentException("es.datastreams_feature_flag_registered is only supported in non-snapshot builds");
404
- }
405
if (Build.CURRENT.isSnapshot() || "true".equals(property)) {
406
DATASTREAMS_FEATURE_FLAG_REGISTERED = true;
407
} else if ("false".equals(property) || property == null) {
0 commit comments