Merge "Add "host_name_separator" variable to Context class"
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Thu, 14 Jun 2018 17:07:41 +0000 (17:07 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Thu, 14 Jun 2018 17:07:41 +0000 (17:07 +0000)
1  2 
yardstick/benchmark/contexts/standalone/sriov.py
yardstick/common/exceptions.py

@@@ -147,28 -137,8 +147,28 @@@ class LibvirtQemuImageCreateError(Yards
                 '%(base_image)s. Error: %(error)s.')
  
  
 +class SSHError(YardstickException):
 +    message = '%(error_msg)s'
 +
 +
 +class SSHTimeout(SSHError):
 +    pass
 +
 +
 +class IncorrectConfig(YardstickException):
 +    message = '%(error_msg)s'
 +
 +
 +class IncorrectSetup(YardstickException):
 +    message = '%(error_msg)s'
 +
 +
 +class IncorrectNodeSetup(IncorrectSetup):
 +    pass
 +
 +
  class ScenarioConfigContextNameNotFound(YardstickException):
-     message = 'Context name "%(context_name)s" not found'
+     message = 'Context for host name "%(host_name)s" not found'
  
  
  class StackCreationInterrupt(YardstickException):