We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97ec02 commit 5cca444Copy full SHA for 5cca444
1 file changed
x-pack/plugins/upgrade_assistant/server/lib/es_deprecations_status.ts
@@ -27,10 +27,8 @@ export async function getESUpgradeStatus(
27
const getCombinedDeprecations = async () => {
28
const indices = await getCombinedIndexInfos(deprecations, dataClient);
29
const systemIndices = await getESSystemIndicesUpgradeStatus(dataClient.asCurrentUser);
30
- const systemIndicesList = [
31
- ...convertFeaturesListToArray(systemIndices.features),
32
- '.security-6',
33
- ];
+ const systemIndicesList = convertFeaturesListToArray(systemIndices.features);
+
34
return Object.keys(deprecations).reduce((combinedDeprecations, deprecationType) => {
35
if (deprecationType === 'index_settings') {
36
const filteredIndices = indices.filter((index) => {
0 commit comments