VMware: Handle VMs with no configurations

Sometime VMs does not return any configurations which leads
to failing the inventory plugin.

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/55992/head
Abhijeet Kasurde 6 years ago committed by Gonéri Le Bouder
parent e4cca4e40a
commit 7505550500

@ -411,6 +411,10 @@ class InventoryModule(BaseInventoryPlugin, Cacheable):
# VMware does not provide a way to uniquely identify VM by its name # VMware does not provide a way to uniquely identify VM by its name
# i.e. there can be two virtual machines with same name # i.e. there can be two virtual machines with same name
# Appending "_" and VMware UUID to make it unique # Appending "_" and VMware UUID to make it unique
if not vm_obj.obj.config:
# Sometime orphaned VMs return no configurations
continue
current_host = vm_obj_property.val + "_" + vm_obj.obj.config.uuid current_host = vm_obj_property.val + "_" + vm_obj.obj.config.uuid
if current_host not in hostvars: if current_host not in hostvars:

Loading…
Cancel
Save