Merge "Clean up validation error message"

This commit is contained in:
Jenkins
2016-11-17 08:56:44 +00:00
committed by Gerrit Code Review

View File

@@ -645,9 +645,9 @@ def _validate_configuration():
_check_sysctl()
_validate_network()
except RuntimeError as e:
LOG.error('ERROR: An error occured during configuration validation, '
LOG.error('An error occured during configuration validation, '
'please check your host configuration and try again. '
'{error}'.format(error=e))
'Error message: {error}'.format(error=e))
sys.exit(1)