From: Ross Brattain <ross.b.brattain@intel.com>
Date: Thu, 1 Mar 2018 16:15:11 +0000 (+0000)
Subject: Merge changes from topics 'feat/keep_vnf', 'YARDSTICK-886'
X-Git-Tag: opnfv-6.0.0~120
X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=0b340735f2a37b9a05d3d86f79aa706b3e43bb5d;p=yardstick.git

Merge changes from topics 'feat/keep_vnf', 'YARDSTICK-886'

* changes:
  Add _create_new_stack method
  Update TaskParser to deal with qualified name in Context
  Add qualified name to Context
---

0b340735f2a37b9a05d3d86f79aa706b3e43bb5d
diff --cc yardstick/common/exceptions.py
index 4562c4825,2af4c6343..41d7b8830
--- a/yardstick/common/exceptions.py
+++ b/yardstick/common/exceptions.py
@@@ -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.'