Merge "NSXT instance migration: Improve logging"

This commit is contained in:
Jenkins 2017-07-17 11:05:42 +00:00 committed by Gerrit Code Review
commit 07238123cd
1 changed files with 7 additions and 0 deletions

View File

@ -180,6 +180,10 @@ def instance_migrate(libvirt_conn, neutron, instance, machine_type,
devs = root.find('devices')
ifaces = devs.findall('interface')
if not ifaces:
LOG.error('No interfaces to migrate for instance %s', instance_name)
for iface in ifaces:
iface_migrate(neutron, instance_name, iface, nsx_switch)
@ -227,6 +231,9 @@ def main():
exit(1)
instances = conn.listAllDomains()
if not instances:
LOG.error('No instances to migrate')
for instance in instances:
try:
instance_migrate(conn, neutron, instance, opts.get('machine-type'),