From 579caa865deca76619ee1611e427ac222aa66321 Mon Sep 17 00:00:00 2001 From: Lukasz Pawlik Date: Mon, 7 Oct 2019 07:48:53 +0100 Subject: integration: fix ovsdpdk_mq_pvp_rxqs_testpmd Parameters passed to testpmd are changed in DPDK 18.11. Setting stat-qmap does not work from command line it can be set only from testpmd application before port forwarding is started. Decrease frame rate on traffic generator to receive traffic on two queues. Change-Id: I82b8e478226d59b091154d325afed07327908250 Signed-off-by: Lukasz Pawlik --- conf/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'conf/__init__.py') diff --git a/conf/__init__.py b/conf/__init__.py index 83c5475f..6dff8360 100644 --- a/conf/__init__.py +++ b/conf/__init__.py @@ -256,6 +256,9 @@ class Settings(object): Expand VM option with given key for given number of VMs """ tmp_value = self.getValue(key) + # skip empty/not set value + if not tmp_value: + return if isinstance(tmp_value, str): scalar = True master_value = tmp_value -- cgit 1.2.3-korg