You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static final Setting<Boolean> SEARCH_PIPELINE_SETTING = Setting.boolSetting(SEARCH_PIPELINE, false, Property.NodeScope);
to
public static final Setting<Boolean> SEARCH_PIPELINE_SETTING = Setting.boolSetting(SEARCH_PIPELINE, true, Property.NodeScope);
The advantage is that we minimize change in the first release and then remove the flag in 2.10. Of course, I may not understand how the feature flags work in the first place and we can only remove the flag instead of setting it to true first.
The text was updated successfully, but these errors were encountered:
I don't think this is the typical process, but I'd like to suggest that in the 2.9 release we update https://github.com/opensearch-project/OpenSearch/blob/main/server/src/main/java/org/opensearch/common/util/FeatureFlags.java instead of just removing the feature flag itself. So, we would update:
to
The advantage is that we minimize change in the first release and then remove the flag in 2.10. Of course, I may not understand how the feature flags work in the first place and we can only remove the flag instead of setting it to true first.
The text was updated successfully, but these errors were encountered: