X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FNsimUtil.py;h=757da067cbe9a32f6ad1f8d87347006dad8d0447;hp=bc599c090ace6f699bb83bdd899a295ef5d7b6c8;hb=e362a2ac7763d586cebc34bd0fc121212b9b4c95;hpb=634bfe6e04a226579913cbc33144f7ae79b68ca2 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"