Fix text in OVN RevisionConflict exception to match code

The IDL code for the OVN mech driver will raise a revision
conflict exception if it has a revision greater than the
neutron one. The exception string is a little misleading
in that it says "equal or higher". Change the string to
match the code.

Change-Id: I10f955b946dcbfcaa4930819b2f65483cfc379d3
This commit is contained in:
Brian Haley 2022-12-08 10:15:12 -05:00
parent a730f8bf02
commit f7c0f466be
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ from neutron._i18n import _
class RevisionConflict(n_exc.NeutronException):
message = _('OVN revision number for %(resource_id)s (type: '
'%(resource_type)s) is equal or higher than the given '
'%(resource_type)s) is higher than the given '
'resource. Skipping update')