Fix the error message when reached max number of traits

The error message is not properly tranlated as desired, raw string
is returned when reached maximum number of traits.

Change-Id: I62b2d32c545b6ad6487aead98c8fab212ed5e83f
(cherry picked from commit d90459a87f)
This commit is contained in:
Kaifeng Wang 2020-07-04 15:35:02 +08:00 committed by Dmitry Tantsur
parent af86e8dc3a
commit bde1e8ea1a
1 changed files with 6 additions and 6 deletions

View File

@ -1515,12 +1515,12 @@ class Connection(api.Connection):
per-node trait limit.
"""
if num_traits > MAX_TRAITS_PER_NODE:
msg = _("Could not modify traits for node %(node_id)s as it would "
"exceed the maximum number of traits per node "
"(%(num_traits)d vs. %(max_traits)d)")
raise exception.InvalidParameterValue(
msg, node_id=node_id, num_traits=num_traits,
max_traits=MAX_TRAITS_PER_NODE)
msg = (_("Could not modify traits for node %(node_id)s as it "
"would exceed the maximum number of traits per node "
"(%(num_traits)d vs. %(max_traits)d)")
% {'node_id': node_id, 'num_traits': num_traits,
'max_traits': MAX_TRAITS_PER_NODE})
raise exception.InvalidParameterValue(err=msg)
@oslo_db_api.retry_on_deadlock
def set_node_traits(self, node_id, traits, version):