From b63e9d9a70dabc4c9a7038f7727fca6bd17d940a Mon Sep 17 00:00:00 2001 From: kirankumarb07 Date: Tue, 7 Feb 2023 13:08:52 +0530 Subject: SOL console opened in a new tab shows an error When the SOL console is opened in a new window, the status of the SOL connection is displayed as "disconnected." And the error message is displaying, "The system must be powered on to connect." I have added this patch to get the systems API call to get the server status when SOL is opened in a new window. Change-Id: I971947fea0980605d400d46bb1e18b2d20164602 Signed-off-by: Kirankumar Ballapalli --- src/views/Operations/SerialOverLan/SerialOverLanConsole.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue index 82637a42..767fd8bd 100644 --- a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue +++ b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue @@ -81,7 +81,7 @@ export default { }, }, created() { - this.$store.dispatch('global/getServerStatus'); + this.$store.dispatch('global/getSystemInfo'); }, mounted() { this.openTerminal(); -- cgit v1.2.3