-
Notifications
You must be signed in to change notification settings - Fork 25.3k
Removing the data stream settings feature flag #128594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing the data stream settings feature flag #128594
Conversation
Pinging @elastic/es-data-management (Team:Data Management) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but I left one comment
@@ -80,7 +79,6 @@ public final class DataStream implements SimpleDiffable<DataStream>, ToXContentO | |||
private static final Logger LOGGER = LogManager.getLogger(DataStream.class); | |||
|
|||
public static final NodeFeature DATA_STREAM_FAILURE_STORE_FEATURE = new NodeFeature("data_stream.failure_store"); | |||
public static final boolean LOGS_STREAM_FEATURE_FLAG = new FeatureFlag("logs_stream").isEnabled(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we keep this in to use with the mappings stuff and the enable/disable API that Luke is working on?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea.
This removes the feature flag that was introduced in #127858, making the data stream settings APIs available without having to pass a flag..