From 3785481d52c7057d041a4d6b20e9079a82dc413c Mon Sep 17 00:00:00 2001 From: asarfaty Date: Tue, 9 Feb 2021 14:56:23 +0200 Subject: [PATCH] V2T migration: Fix validation error message Change-Id: I44faf0cff459c27a2553208bc4e30fcc185fcd53 --- vmware_nsx/shell/admin/plugins/nsxv/resources/migration.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vmware_nsx/shell/admin/plugins/nsxv/resources/migration.py b/vmware_nsx/shell/admin/plugins/nsxv/resources/migration.py index 26bd78b0f1..9717b1220d 100644 --- a/vmware_nsx/shell/admin/plugins/nsxv/resources/migration.py +++ b/vmware_nsx/shell/admin/plugins/nsxv/resources/migration.py @@ -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