diff options
author | 2025-01-31 08:44:49 +0100 | |
---|---|---|
committer | 2025-01-31 08:43:11 +0000 | |
commit | a8abc698a4d03488ac3808a9a3f106d6cb047e98 (patch) | |
tree | 1366e649c70cb1e5f090ad99380af54824898dc6 /resources/libraries/python/DPDK/DPDKTools.py | |
parent | 4e6c67677f53c50e230672e0d0a2146ef963b70d (diff) |
fix(core): VPP startup sequence
Signed-off-by: Peter Mikus <peter.mikus@icloud.com>
Change-Id: I37899c45bf8d87f24cb67cdd120837a833955a3b
Diffstat (limited to 'resources/libraries/python/DPDK/DPDKTools.py')
-rw-r--r-- | resources/libraries/python/DPDK/DPDKTools.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/libraries/python/DPDK/DPDKTools.py b/resources/libraries/python/DPDK/DPDKTools.py index cf5f6fc79e..12800ba4fc 100644 --- a/resources/libraries/python/DPDK/DPDKTools.py +++ b/resources/libraries/python/DPDK/DPDKTools.py @@ -1,4 +1,4 @@ -# Copyright (c) 2024 Cisco and/or its affiliates. +# Copyright (c) 2025 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -94,7 +94,6 @@ class DPDKTools: command = f"cat {Constants.REMOTE_FW_DIR}/dpdk*/VERSION" message = u"Get DPDK version failed!" stdout, _ = exec_cmd_no_error(node, command, message=message) - # TODO: PAL should already tolerate stripped value in the log. logger.info(f"DPDK Version: {stdout}") return stdout.strip() |