diff options
author | Vratko Polak <vrpolak@cisco.com> | 2021-09-17 14:44:06 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2021-09-20 07:49:39 +0000 |
commit | e362a2ac7763d586cebc34bd0fc121212b9b4c95 (patch) | |
tree | 309d5222e933f5f02a1a3633026bed900bc6050a /resources/libraries/python/NsimUtil.py | |
parent | 634bfe6e04a226579913cbc33144f7ae79b68ca2 (diff) |
API: Remove old_cmd support
Master branch is no longer expected to work with such old VPP builds,
and CRC values were removed already anyway.
Change-Id: I707a61bc82d7d8998100fcd9fe78b90e7b074675
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/NsimUtil.py')
-rw-r--r-- | resources/libraries/python/NsimUtil.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/resources/libraries/python/NsimUtil.py b/resources/libraries/python/NsimUtil.py index bc599c090a..757da067cb 100644 --- a/resources/libraries/python/NsimUtil.py +++ b/resources/libraries/python/NsimUtil.py @@ -51,15 +51,8 @@ class NsimUtil(): packets_per_reorder=vpp_nsim_attr.get(u"packets_per_reorder", 0) ) err_msg = f"Failed to configure NSIM on host {host}" - try: - with PapiSocketExecutor(node) as papi_exec: - papi_exec.add(cmd, **args).get_reply(err_msg) - except AssertionError: - # Perhaps VPP is an older version - old_cmd = u"nsim_configure" - args.pop(u"packets_per_reorder") - with PapiSocketExecutor(node) as papi_exec: - papi_exec.add(old_cmd, **args).get_reply(err_msg) + with PapiSocketExecutor(node) as papi_exec: + papi_exec.add(cmd, **args).get_reply(err_msg) if vpp_nsim_attr[u"output_nsim_enable"]: cmd = u"nsim_output_feature_enable_disable" |