summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2024-04-02 00:05:21 +0300
committerGunnar Mills <gunnar@gmills.xyz>2024-04-04 22:53:09 +0300
commit7ac13cc939beaf9a2a7af870ba9b5650c98e409e (patch)
tree3626ff9647f62a93beb6f5da9dc8e612a65b2918 /config
parent3dfed536df173ea6d37ac93f428b9094b6a736d1 (diff)
downloadbmcweb-7ac13cc939beaf9a2a7af870ba9b5650c98e409e.tar.xz
Remove redfish-health-populate
The redfish-health-populate option was scheduled to be removed in 1Q 2024. It is now 2Q, so remove the option. No upstream layers enabled it and did not find a downstream layer that did either. This was always limited to a few resources. Overall this design was only half done. A future "HealthRollup" can be proposed. Some discord discussion: [1]: https://discord.com/channels/775381525260664832/855566794994221117/1110728560819327069 Commit disabling this (merged 10 months ago): [2]: https://github.com/openbmc/bmcweb/commit/6f8273e49cffdd347c223b9538558edfb05e818a Tested: Code compiles Change-Id: I4d33c1e674ecdb0fd256df62f3795073454ae7a1 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'config')
-rw-r--r--config/bmcweb_config.h.in2
-rw-r--r--config/meson.build2
2 files changed, 0 insertions, 4 deletions
diff --git a/config/bmcweb_config.h.in b/config/bmcweb_config.h.in
index 04dcf7ee96..476379645f 100644
--- a/config/bmcweb_config.h.in
+++ b/config/bmcweb_config.h.in
@@ -17,8 +17,6 @@ constexpr const bool bmcwebInsecureEnableHttpPushStyleEventing = @BMCWEB_INSECUR
constexpr const char* bmcwebLoggingLevel = "@BMCWEB_LOGGING_LEVEL@";
-constexpr const bool bmcwebEnableHealthPopulate = @BMCWEB_ENABLE_HEALTH_POPULATE@ == 1;
-
constexpr const bool bmcwebEnableMultiHost = @BMCWEB_ENABLE_MULTI_HOST@ == 1;
constexpr const bool bmcwebEnableHTTP2 = @BMCWEB_ENABLE_HTTP2@ == 1;
diff --git a/config/meson.build b/config/meson.build
index e19f964bcd..7328820a6b 100644
--- a/config/meson.build
+++ b/config/meson.build
@@ -12,8 +12,6 @@ insecure_push_style_notification = get_option('insecure-push-style-notification'
conf_data.set10('BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', insecure_push_style_notification.allowed())
conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
conf_data.set('HTTPS_PORT', get_option('https_port'))
-enable_health_populate = get_option('redfish-health-populate')
-conf_data.set10('BMCWEB_ENABLE_HEALTH_POPULATE', enable_health_populate.allowed())
enable_multi_host = get_option('experimental-redfish-multi-computer-system')
conf_data.set10('BMCWEB_ENABLE_MULTI_HOST', enable_multi_host.allowed())
enable_http2 = get_option('experimental-http2')