Define "LbAddIpPortMappingCommand" with latin chars

Closes-Bug: #2004186
Change-Id: Ic0e28b1113b6af1c66e6301e1851b620eac19824
This commit is contained in:
Rodolfo Alonso Hernandez 2023-01-24 11:01:24 +01:00 committed by Rodolfo Alonso
parent c8e7e9f619
commit 7733f0c536
2 changed files with 2 additions and 2 deletions

View File

@ -1418,7 +1418,7 @@ class LbDelHealthCheckCommand(cmd.BaseCommand):
raise RuntimeError(msg)
class LbAddIpPortMappingСommand(cmd.BaseCommand):
class LbAddIpPortMappingCommand(cmd.BaseCommand):
table = 'Load_Balancer'
def __init__(self, api, lb, endpoint_ip, port_name, source_ip):

View File

@ -289,7 +289,7 @@ class OvnNbApiIdlImpl(ovs_idl.Backend, api.API):
return cmd.LbDelHealthCheckCommand(self, lb, hc_uuid, if_exists)
def lb_add_ip_port_mapping(self, lb, endport_ip, port_name, source_ip):
return cmd.LbAddIpPortMappingСommand(self, lb, endport_ip,
return cmd.LbAddIpPortMappingCommand(self, lb, endport_ip,
port_name, source_ip)
def lb_del_ip_port_mapping(self, lb, endport_ip):