V2T migration: Fix validation error message

Change-Id: I44faf0cff459c27a2553208bc4e30fcc185fcd53
This commit is contained in:
asarfaty 2021-02-09 14:56:23 +02:00 committed by Adit Sarfaty
parent 448bda232e
commit 9e82b5535e
1 changed files with 3 additions and 3 deletions

View File

@ -272,9 +272,9 @@ def validate_config_for_migration(resource, event, trigger, **kwargs):
elif router_id not in lb_routers:
lb_routers.append(router_id)
if len(lb_routers) > 1:
LOG.error("ERROR: Found members uplinked to different "
"routers on loadbalancer %s. This is not "
"supported.", lb_id)
LOG.error("ERROR: Found members/vips from different "
"subnets or uplinks to different routers on "
"loadbalancer %s. This is not supported.", lb_id)
n_errors = n_errors + 1
break