From 90640d630dbe4e98d2667138a9574f4e913309ea Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Thu, 3 Aug 2023 10:35:33 +0200 Subject: [PATCH] fix block storage resource registry in the resource registry grouptype entry accidentially points to the module and not to the exact class. Change-Id: Ib19139c4c29236778ef4a857595c27444f738240 --- openstack/block_storage/v3/_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/block_storage/v3/_proxy.py b/openstack/block_storage/v3/_proxy.py index b729f9720..6c0591fb2 100644 --- a/openstack/block_storage/v3/_proxy.py +++ b/openstack/block_storage/v3/_proxy.py @@ -39,7 +39,7 @@ class Proxy(_base_proxy.BaseBlockStorageProxy): "extension": _extension.Extension, "group": _group.Group, "group_snapshot": _group_snapshot.GroupSnapshot, - "group_type": _group_type, + "group_type": _group_type.GroupType, "limits": _limits.Limit, "quota_set": _quota_set.QuotaSet, "resource_filter": _resource_filter.ResourceFilter,