From f52a04cb5032a0a8b59e4bb840405fbbd0170e33 Mon Sep 17 00:00:00 2001 From: Pablo Neves Machado Date: Thu, 1 Dec 2022 13:07:34 +0100 Subject: [PATCH] =?UTF-8?q?Quick-fix=20Users=20can=E2=80=99t=20upgrade=20t?= =?UTF-8?q?heir=20clusters=20when=20an=20old=20experimental=20feature=20is?= =?UTF-8?q?=20enabled.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../security_solution/common/experimental_features.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/x-pack/plugins/security_solution/common/experimental_features.ts b/x-pack/plugins/security_solution/common/experimental_features.ts index 9a48abc68f466..ac3a0e2f1bfc6 100644 --- a/x-pack/plugins/security_solution/common/experimental_features.ts +++ b/x-pack/plugins/security_solution/common/experimental_features.ts @@ -80,6 +80,16 @@ export const allowedExperimentalValues = Object.freeze({ * Enables the `get-file` endpoint response action */ responseActionGetFileEnabled: false, + + /** + * Keep DEPRECATED experimental flags that are documented to prevent failed upgrades. + * https://www.elastic.co/guide/en/security/current/user-risk-score.html + * https://www.elastic.co/guide/en/security/current/host-risk-score.html + * + * Issue: https://github.com/elastic/kibana/issues/146777 + */ + riskyHostsEnabled: false, // DEPRECATED + riskyUsersEnabled: false, // DEPRECATED }); type ExperimentalConfigKeys = Array;