Merge changes from topics 'feat/keep_vnf', 'YARDSTICK-886'
authorRoss Brattain <ross.b.brattain@intel.com>
Thu, 1 Mar 2018 16:15:11 +0000 (16:15 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Thu, 1 Mar 2018 16:15:11 +0000 (16:15 +0000)
* changes:
  Add _create_new_stack method
  Update TaskParser to deal with qualified name in Context
  Add qualified name to Context

1  2 
yardstick/benchmark/core/task.py
yardstick/common/exceptions.py
yardstick/tests/unit/benchmark/core/test_task.py

Simple merge
@@@ -68,10 -68,13 +68,18 @@@ class HeatTemplateError(YardstickExcept
  class IPv6RangeError(YardstickException):
      message = 'Start IP "%(start_ip)s" is greater than end IP "%(end_ip)s"'
  
 +
 +class TrafficProfileNotImplemented(YardstickException):
 +    message = 'No implementation for traffic profile %(profile_class)s.'
 +
 +
  class DPDKSetupDriverError(YardstickException):
      message = '"igb_uio" driver is not loaded'
+ class ScenarioConfigContextNameNotFound(YardstickException):
+     message = 'Context name "%(context_name)s" not found'
+ class StackCreationInterrupt(YardstickException):
+     message = 'Stack create interrupted.'