aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjuraj.linkes <juraj.linkes@pantheon.tech>2019-08-06 14:49:15 +0200
committerjuraj.linkes <juraj.linkes@pantheon.tech>2019-08-06 14:49:15 +0200
commit11aa6d6cd19b10d43011f1f55362d158aa488888 (patch)
treea00dbe64007aad60e76eb3229e1554c9e0f9176b
parent7d7259ab1a065f0d1f849b29270514eacd3a1efe (diff)
Change show hardware detail to show hardware verbose
After https://gerrit.fd.io/r/#/c/vpp/+/21071/, show hardware verbose doesn't output slowly processed module info which is not needed for debugging purposes. Change-Id: I2f91a0ce1bfc082b46f2fe43df968750bcd1cf3a Signed-off-by: juraj.linkes <juraj.linkes@pantheon.tech>
-rw-r--r--resources/libraries/python/VppCounters.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/libraries/python/VppCounters.py b/resources/libraries/python/VppCounters.py
index 03b40b7a6b..2605024edd 100644
--- a/resources/libraries/python/VppCounters.py
+++ b/resources/libraries/python/VppCounters.py
@@ -156,13 +156,13 @@ class VppCounters(object):
VppCounters.vpp_show_runtime(node)
@staticmethod
- def vpp_show_hardware_detail(node):
- """Run "show hardware-interfaces detail" debug CLI command.
+ def vpp_show_hardware_verbose(node):
+ """Run "show hardware-interfaces verbose" debug CLI command.
:param node: Node to run command on.
:type node: dict
"""
- PapiSocketExecutor.run_cli_cmd(node, 'show hardware detail')
+ PapiSocketExecutor.run_cli_cmd(node, 'show hardware verbose')
@staticmethod
def vpp_clear_runtime(node):
@@ -316,7 +316,7 @@ class VppCounters(object):
:type node: dict
"""
VppCounters.vpp_show_errors(node)
- VppCounters.vpp_show_hardware_detail(node)
+ VppCounters.vpp_show_hardware_verbose(node)
VppCounters.vpp_show_runtime(node)
@staticmethod