From 252698de6a3ebdae0b2793c941b6117868e5574e Mon Sep 17 00:00:00 2001 From: Christophe Useinovic Date: Tue, 5 Oct 2021 15:44:04 +0200 Subject: [PATCH] Update compute.discovery to get nova domain meta Nova changed the namespace for nova specific data to version 1.1 for the wallaby cycle . Closes-Bug: #1930446 Change-Id: I2aa34cf142c6429a7a0a3b8f232c3ed83f7d9981 --- ceilometer/compute/discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceilometer/compute/discovery.py b/ceilometer/compute/discovery.py index f313305929..ddbecb5a23 100644 --- a/ceilometer/compute/discovery.py +++ b/ceilometer/compute/discovery.py @@ -140,7 +140,7 @@ class InstanceDiscovery(plugin_base.DiscoveryBase): try: xml_string = domain.metadata( libvirt.VIR_DOMAIN_METADATA_ELEMENT, - "http://openstack.org/xmlns/libvirt/nova/1.0") + "http://openstack.org/xmlns/libvirt/nova/1.1") except libvirt.libvirtError as e: if libvirt_utils.is_disconnection_exception(e): # Re-raise the exception so it's handled and retries