From 4bacffee6648c95cc91de9c8bc6c479591570355 Mon Sep 17 00:00:00 2001 From: Nikhil Ashoka Date: Mon, 16 Sep 2024 15:56:25 +0530 Subject: [PATCH] Updated Redfish URI for Executing Panel functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated the Redfish end-point URI to execute Panel functions. - /redfish/v1/Systems/system/Actions/Oem/OemComputerSystem.ExecutePanelFunction —> /redfish/v1/Systems/system/Actions/Oem/IBM/IBMComputerSystem.ExecutePanelFunction - JIRA: https://jsw.ibm.com/browse/PFEBMC-3369 Signed-off-by: Nikhil Ashoka --- src/store/modules/Logs/IBMiServiceFunctionsStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/Logs/IBMiServiceFunctionsStore.js b/src/store/modules/Logs/IBMiServiceFunctionsStore.js index e449a08665..7ea52a3a18 100644 --- a/src/store/modules/Logs/IBMiServiceFunctionsStore.js +++ b/src/store/modules/Logs/IBMiServiceFunctionsStore.js @@ -23,7 +23,7 @@ const IBMiServiceFunctionsStore = { async executeServiceFunction({ dispatch }, value) { return await api .post( - '/redfish/v1/Systems/system/Actions/Oem/OemComputerSystem.ExecutePanelFunction', + '/redfish/v1/Systems/system/Actions/Oem/IBM/IBMComputerSystem.ExecutePanelFunction', { FuncNo: value } ) .then(() => {