V2T migration: Add L2GW ids in validation error

Change-Id: I584cd5935c4c41fbc97022968296b9a6bf42ca92
This commit is contained in:
asarfaty 2021-02-15 09:41:21 +02:00 committed by Adit Sarfaty
parent 19a23a1a69
commit babd78625e
1 changed files with 2 additions and 2 deletions

View File

@ -281,8 +281,8 @@ def validate_config_for_migration(resource, event, trigger, **kwargs):
# L2GW is not supported with the policy plugin
l2gws = admin_context.session.query(l2gateway_models.L2Gateway).all()
if len(l2gws):
LOG.error("ERROR: Found %s L2Gws. Networking-l2gw is not supported.",
len(l2gws))
LOG.error("ERROR: Found %s L2Gws: %s. Networking-l2gw is not "
"supported.", len(l2gws), [l2gw.id for l2gw in l2gws])
n_errors = n_errors + 1
if n_errors > 0: