From a89126907930ee02a403feee59d5c805150d5208 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 24 Mar 2025 13:55:38 +0100 Subject: [PATCH] Add hypervisor_hostname --- libcloud/compute/drivers/openstack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py index 023d93c6bd..18e2ff327b 100644 --- a/libcloud/compute/drivers/openstack.py +++ b/libcloud/compute/drivers/openstack.py @@ -2467,6 +2467,7 @@ def _to_node(self, api_node): power_state=api_node.get("OS-EXT-STS:power_state", None), progress=api_node.get("progress", None), fault=api_node.get("fault"), + hypervisor_hostname=api_node.get("OS-EXT-SRV-ATTR:hypervisor_hostname"), ), )