summaryrefslogtreecommitdiffstats
path: root/nfvbench/traffic_gen/traffic_base.py
diff options
context:
space:
mode:
authorahothan <ahothan@cisco.com>2018-02-09 13:17:08 -0800
committerahothan <ahothan@cisco.com>2018-02-09 13:17:08 -0800
commit5baff6620aee46376023b209c7d11c56a7c5181a (patch)
treed763b71cda94e1ab273c27d94949b165c0ce4a29 /nfvbench/traffic_gen/traffic_base.py
parent298511bb572ffeb460f7ccbebe06233a17e6b794 (diff)
[NFVBENCH-65] 1.2.2: AttributeError: 'RunningTrafficProfile' object has no attribute 'software_mode'
Fix exception Change-Id: Id95c31d8ba999e0da39fa07c4e31e696da89d98e Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'nfvbench/traffic_gen/traffic_base.py')
-rw-r--r--nfvbench/traffic_gen/traffic_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nfvbench/traffic_gen/traffic_base.py b/nfvbench/traffic_gen/traffic_base.py
index 817ecc8..c2ac8d0 100644
--- a/nfvbench/traffic_gen/traffic_base.py
+++ b/nfvbench/traffic_gen/traffic_base.py
@@ -58,7 +58,7 @@ class AbstractTrafficGenerator(object):
return None
@abc.abstractmethod
- def create_traffic(self):
+ def create_traffic(self, l2frame_size, rates, bidirectional, latency=True):
# Must be implemented by sub classes
return None