summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/store/modules/HardwareStatus/FanStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/modules/HardwareStatus/FanStore.js b/src/store/modules/HardwareStatus/FanStore.js
index 69e18532..34f75acc 100644
--- a/src/store/modules/HardwareStatus/FanStore.js
+++ b/src/store/modules/HardwareStatus/FanStore.js
@@ -114,7 +114,7 @@ const FanStore = {
},
async getFanInfo({ commit }) {
return await api
- .get('/redfish/v1/Chassis/chassis/Thermal')
+ .get('/redfish/v1/Chassis/SILA_Baseboard/Thermal')
.then(({ data: { Fans = [] } }) => commit('setFanInfo', Fans))
.catch((error) => console.log(error));
},