diff options
author | Christophe Useinovic <christophe.useinovic@objectif-libre.com> | 2021-10-05 15:44:04 +0200 |
---|---|---|
committer | Christophe Useinovic <christophe.useinovic@objectif-libre.com> | 2021-10-07 09:59:16 +0000 |
commit | 252698de6a3ebdae0b2793c941b6117868e5574e (patch) | |
tree | e533408893df138fd49dd45ea2e7a40c3f666bb1 /ceilometer | |
parent | b73ae4e6de22c79eac3c5af6ac47c432f6d0816e (diff) | |
download | ceilometer-252698de6a3ebdae0b2793c941b6117868e5574e.tar.gz |
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
Diffstat (limited to 'ceilometer')
-rw-r--r-- | ceilometer/compute/discovery.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ceilometer/compute/discovery.py b/ceilometer/compute/discovery.py index f3133059..ddbecb5a 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 |