Merge "Fix string"

This commit is contained in:
Zuul 2019-09-27 08:01:02 +00:00 committed by Gerrit Code Review
commit a29ff6890f
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ def validate_cluster_creating(pctx, cluster):
zk_count = _get_inst_count(cluster, 'zookeeper')
if zk_count > 0 and (zk_count % 2) != 1:
raise ex.InvalidComponentCountException(
'zookeeper', _('odd'), zk_count, _('Number of zookeeper nodes'
'should be in odd.'))
'zookeeper', _('odd'), zk_count, _('Number of zookeeper nodes '
'should be odd.'))
def validate_additional_ng_scaling(cluster, additional):