Skip to content

Commit 5cca444

Browse files
committed
Remove testing mock
1 parent d97ec02 commit 5cca444

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

x-pack/plugins/upgrade_assistant/server/lib/es_deprecations_status.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ export async function getESUpgradeStatus(
2727
const getCombinedDeprecations = async () => {
2828
const indices = await getCombinedIndexInfos(deprecations, dataClient);
2929
const systemIndices = await getESSystemIndicesUpgradeStatus(dataClient.asCurrentUser);
30-
const systemIndicesList = [
31-
...convertFeaturesListToArray(systemIndices.features),
32-
'.security-6',
33-
];
30+
const systemIndicesList = convertFeaturesListToArray(systemIndices.features);
31+
3432
return Object.keys(deprecations).reduce((combinedDeprecations, deprecationType) => {
3533
if (deprecationType === 'index_settings') {
3634
const filteredIndices = indices.filter((index) => {

0 commit comments

Comments
 (0)