Merge "Add "host_name_separator" variable to Context class" into stable/fraser
authorEmma Foley <emma.l.foley@intel.com>
Fri, 22 Jun 2018 15:21:59 +0000 (15:21 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Fri, 22 Jun 2018 15:21:59 +0000 (15:21 +0000)
1  2 
yardstick/benchmark/contexts/standalone/sriov.py
yardstick/common/exceptions.py

@@@ -122,28 -112,8 +122,28 @@@ class LibvirtCreateError(YardstickExcep
      message = 'Error creating the virtual machine. 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):