diff options
author | Peter Mikus <pmikus@cisco.com> | 2018-04-05 09:34:14 +0000 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2018-04-09 13:45:10 +0200 |
commit | 5fe3ed050690e465c09692230e8eb715552c408f (patch) | |
tree | 857bc3216d844356aefc11d45944c90f546f3d52 | |
parent | 2feeaea9155d83452455375acea0245c055fce33 (diff) |
FIX: Change plugin default behavior for Container tests
Looks like disabling all plugins in container leaving
only memif_plugin.so results into issue that could lead
into lost of SSH connectivity to TB or in better case
to not handling any traffic.
This fix is supose to return previous behavior for Container
instance of VPP.
vpp_config.add_plugin('disable', 'dpdk_plugin.so')
Change-Id: I7bca6c73c0f5aaf30d423b90ff7c2d2c38d54700
Signed-off-by: Peter Mikus <pmikus@cisco.com>
-rw-r--r-- | resources/libraries/python/ContainerUtils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/ContainerUtils.py b/resources/libraries/python/ContainerUtils.py index b56fb0dc24..700b6c6753 100644 --- a/resources/libraries/python/ContainerUtils.py +++ b/resources/libraries/python/ContainerUtils.py @@ -321,7 +321,7 @@ class ContainerEngine(object): if cpuset_cpus: corelist_workers = ','.join(str(cpu) for cpu in cpuset_cpus) vpp_config.add_cpu_corelist_workers(corelist_workers) - vpp_config.add_plugin_disable('dpdk_plugin.so') + vpp_config.add_plugin('disable', 'dpdk_plugin.so') self.execute('mkdir -p /etc/vpp/') self.execute('echo "{c}" | tee {f}' |