Merge "Fix: InvalidParameterValue Exception not raised correctly"

This commit is contained in:
Jenkins 2016-11-07 10:28:32 +00:00 committed by Gerrit Code Review
commit dc3b9de9af
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ def _enforce_volume_storage_size(cluster_template):
raise exception.InvalidParameterValue(
'docker volume size %s GB is not valid, '
'expecting minimum value 3GB for %s storage '
'driver.') % (volume_size, storage_driver)
'driver.' % (volume_size, storage_driver))
def validate_cluster_properties(delta):