-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed as not planned
Labels
:Data Management/Indices APIsAPIs to create and manage indices and templatesAPIs to create and manage indices and templatesTeam:Data ManagementMeta label for data/management teamMeta label for data/management team
Description
The logic to parse IndicesOptions.WildcardStates from a String or List of strings is overly lenient in that the ordering of values results in a different output when none is used as one of the values.
| Input | Output |
|---|---|
| all,none | |
| none,all | open, closed |
| none,open | open |
| open,none | |
| closed,none,open | open |
The parsing should be made more strict to disallow none with other values. There could be some users relying on this behavior, so to maintain BWC we could deprecate the use of none with other values in 7.x and disallow none with other values in 8.0.
Metadata
Metadata
Assignees
Labels
:Data Management/Indices APIsAPIs to create and manage indices and templatesAPIs to create and manage indices and templatesTeam:Data ManagementMeta label for data/management teamMeta label for data/management team