From: Deepak S Date: Wed, 23 Aug 2017 10:45:23 +0000 (-0700) Subject: Fixed 1C/2T configuration issues. X-Git-Tag: opnfv-5.0.RC1~242 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=2a5189826106cee5bbbcc35df53abc4002c9d47f;p=yardstick.git Fixed 1C/2T configuration issues. Change-Id: I361d88043076c2f901ff6df22f2849edc7559ba0 Signed-off-by: Deepak S --- diff --git a/yardstick/network_services/helpers/samplevnf_helper.py b/yardstick/network_services/helpers/samplevnf_helper.py index dbc10b8c5..870409e31 100644 --- a/yardstick/network_services/helpers/samplevnf_helper.py +++ b/yardstick/network_services/helpers/samplevnf_helper.py @@ -222,7 +222,7 @@ class MultiPortConfig(object): return try: - self.start_core = 'h{}'.format(int(self.start_core)) + self.start_core = '{}h'.format(int(self.start_core)) except ValueError: self.start_core = int(self.start_core[:-1]) + 1