Skip to content

Commit d821d69

Browse files
Update Server status in Server power operations page
After reboot or shutdown CPU via WebUI, the Server status does not update. The current implementation uses setTimeout() with a timeout of 5 minutes, it means the server power operations page reloads after 5 minutes. The issue is that the power status has really changed but has not been updated on the Server status because of the timeout. Fix the issue by changing setTimeout() to setInterval(). The Server status is updated after each 5 seconds. Fixes: #102 Reference: https://www.educba.com/settimeout-vs-setinterval/ Tested: 1. Power off the CPU via WebUI. 2. WebUI shows Server status as off and a power on button. Change-Id: I31359d970c2aa42f29115102ddbc9cbe85fb168d Signed-off-by: Hieu Huynh <[email protected]> Signed-off-by: HuyLe <[email protected]>
1 parent 4700907 commit d821d69

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/store/modules/Operations/ControlStore.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,27 @@ import i18n from '@/i18n';
44
/**
55
* Watch for serverStatus changes in GlobalStore module
66
* to set isOperationInProgress state
7-
* Stop watching status changes and resolve Promise when
8-
* serverStatus value matches passed argument or after 5 minutes
7+
* Allows run get API from redfish function starting
8+
* after the interval of 5 seconds time, then repeating continuously
9+
* at that interval until serverStatus value matches passed argument
10+
* then Stop watching status changes and resolve Promise.
911
* @param {string} serverStatus
1012
* @returns {Promise}
1113
*/
1214
const checkForServerStatus = function (serverStatus) {
1315
return new Promise((resolve) => {
14-
const timer = setTimeout(() => {
16+
const timer = setInterval(() => {
17+
this.dispatch('global/getSystemInfo');
1518
resolve();
1619
unwatch();
17-
}, 300000 /*5mins*/);
20+
}, 5000); /*5seconds*/
1821
const unwatch = this.watch(
1922
(state) => state.global.serverStatus,
2023
(value) => {
2124
if (value === serverStatus) {
2225
resolve();
2326
unwatch();
24-
clearTimeout(timer);
27+
clearInterval(timer);
2528
}
2629
}
2730
);

src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue

+1
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ export default {
205205
Promise.all([
206206
this.$store.dispatch('serverBootSettings/getBootSettings'),
207207
this.$store.dispatch('controls/getLastPowerOperationTime'),
208+
this.$store.dispatch('global/getSystemInfo'),
208209
bootSettingsPromise,
209210
]).finally(() => this.endLoader());
210211
},

0 commit comments

Comments
 (0)