summaryrefslogtreecommitdiff
path: root/src/store/modules/GlobalStore.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-13 20:42:09 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-13 20:42:09 +0300
commita371d20f1d0a3e14d4ac1614c1a60e2fbb9d2698 (patch)
treea7ec7f9413b7b6a4625c17ded33cac516210fccd /src/store/modules/GlobalStore.js
parent532a4b033669497d972683320e3d1d6dde1943f6 (diff)
downloadwebui-vue-a371d20f1d0a3e14d4ac1614c1a60e2fbb9d2698.tar.xz
Update BMC time to use redfish
Change getBmcTime call from D-Bus to redfish endpoint in GlobalStore module. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I3c459d6bf40a778d5e03d112c12e45ad8554c141
Diffstat (limited to 'src/store/modules/GlobalStore.js')
-rw-r--r--src/store/modules/GlobalStore.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/store/modules/GlobalStore.js b/src/store/modules/GlobalStore.js
index 6511a45a..057f5158 100644
--- a/src/store/modules/GlobalStore.js
+++ b/src/store/modules/GlobalStore.js
@@ -51,11 +51,10 @@ const GlobalStore = {
},
getBmcTime({ commit }) {
api
- .get('/xyz/openbmc_project/time/bmc')
+ .get('/redfish/v1/Managers/bmc')
.then(response => {
- // bmcTime is stored in microseconds, convert to milliseconds
- const bmcEpochTime = response.data.data.Elapsed / 1000;
- const date = new Date(bmcEpochTime);
+ const bmcDateTime = response.data.DateTime;
+ const date = new Date(bmcDateTime);
commit('setBmcTime', date);
})
.catch(error => console.log(error));