From dadacfcee9658cb9ab558cd9479e8671596ec097 Mon Sep 17 00:00:00 2001 From: Fabrizio Perez Date: Thu, 29 Feb 2024 19:35:25 +0000 Subject: [PATCH] Revert "Modify Memory Field Names" This reverts commit 047726123a6d85360699a9da68cff2fb1eff4ef5. Reason for revert: A different solution was proposed. Change-Id: I2ffb515927ef32c8378669a49f8e0d4935c813f7 --- .../cgts-client/cgtsclient/v1/imemory_shell.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sysinv/cgts-client/cgts-client/cgtsclient/v1/imemory_shell.py b/sysinv/cgts-client/cgts-client/cgtsclient/v1/imemory_shell.py index d1f344d29f..ea5cafe79d 100644 --- a/sysinv/cgts-client/cgts-client/cgtsclient/v1/imemory_shell.py +++ b/sysinv/cgts-client/cgts-client/cgtsclient/v1/imemory_shell.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2014, 2018, 2019, 2023 Wind River Systems, Inc. +# Copyright (c) 2013-2014 Wind River Systems, Inc. # # SPDX-License-Identifier: Apache-2.0 # @@ -43,10 +43,10 @@ def _print_imemory_show(imemory): 'Application Huge Pages Pending As Percentage', 'Application Huge Pages (2M): Total', ' Total Pending', - ' Available (App and vS)', + ' Available', 'Application Huge Pages (1G): Total', ' Total Pending', - ' Available (App and vS)', + ' Available', 'uuid', 'ihost_uuid', 'inode_uuid', 'created_at', 'updated_at'] @@ -136,12 +136,12 @@ def do_host_memory_list(cc, args): 'app_total_4K', 'app_hp_as_percentage', 'app_hp_total_2M', - 'hp_avail_2M', + 'app_hp_avail_2M', 'app_hp_pending_2M', 'app_hp_total_1G', - 'hp_avail_1G', + 'app_hp_avail_1G', 'app_hp_pending_1G', - 'hp_use_1G'] + 'app_hp_use_1G'] utils.print_list(imemorys, fields, field_labels, sortby=1)