public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Fiona Ebner <f.ebner@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH ceph master/pve-9] cherry-pick fix for ceph-volume exception when creating an OSD
Date: Mon, 23 Jun 2025 16:15:02 +0200	[thread overview]
Message-ID: <20250623141632.409074-1-f.ebner@proxmox.com> (raw)

Without the patch, creating an OSD would fail with:
> AttributeError: 'EntryPoints' object has no attribute 'get'

Thanks to Fabian Grünbichler for quickly finding the fix upstream!

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
---
 ...volume-fix-importlib.metadata-compat.patch | 39 +++++++++++++++++++
 patches/series                                |  1 +
 2 files changed, 40 insertions(+)
 create mode 100644 patches/0031-ceph-volume-fix-importlib.metadata-compat.patch

diff --git a/patches/0031-ceph-volume-fix-importlib.metadata-compat.patch b/patches/0031-ceph-volume-fix-importlib.metadata-compat.patch
new file mode 100644
index 00000000000..48fc4dc174f
--- /dev/null
+++ b/patches/0031-ceph-volume-fix-importlib.metadata-compat.patch
@@ -0,0 +1,39 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Peter Sabaini <peter.sabaini@canonical.com>
+Date: Wed, 11 Sep 2024 16:56:50 +0200
+Subject: [PATCH] ceph-volume: fix importlib.metadata compat
+
+The importlib.metadata library removed older shims in releases >5.0.0
+where EntryPoints objects use .select() instead of dict-like access.
+
+Fixes: https://tracker.ceph.com/issues/68032
+
+Signed-off-by: Peter Sabaini <peter.sabaini@canonical.com>
+(cherry picked from commit 8c78a22d2cf69892570f635735d9735169b64a75)
+Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
+---
+ src/ceph-volume/ceph_volume/main.py | 10 +++++++++-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/src/ceph-volume/ceph_volume/main.py b/src/ceph-volume/ceph_volume/main.py
+index f8eca65ec49..4f27f429e89 100644
+--- a/src/ceph-volume/ceph_volume/main.py
++++ b/src/ceph-volume/ceph_volume/main.py
+@@ -11,8 +11,16 @@ try:
+     from importlib.metadata import entry_points
+ 
+     def get_entry_points(group: str):  # type: ignore
+-        return entry_points().get(group, [])  # type: ignore
++        eps = entry_points()
++        if hasattr(eps, 'select'):
++            # New importlib.metadata uses .select()
++            return eps.select(group=group)
++        else:
++            # Fallback to older EntryPoints that returns dicts
++            return eps.get(group, [])  # type: ignore
++
+ except ImportError:
++    # Fallback to `pkg_resources` for older versions
+     from pkg_resources import iter_entry_points as entry_points  # type: ignore
+ 
+     def get_entry_points(group: str):  # type: ignore
diff --git a/patches/series b/patches/series
index 203eb9a7482..517070ac3e0 100644
--- a/patches/series
+++ b/patches/series
@@ -25,3 +25,4 @@
 0028-python-common-add-a-utils-function-to-replace-distut.patch
 0029-pybind-mgr-replace-imports-of-distutils.util.patch
 0030-debian-radosgw-add-media-types-packages-as-alternati.patch
+0031-ceph-volume-fix-importlib.metadata-compat.patch
-- 
2.47.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

             reply	other threads:[~2025-06-23 14:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 14:15 Fiona Ebner [this message]
2025-07-02  7:46 ` [pve-devel] applied: " Thomas Lamprecht

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250623141632.409074-1-f.ebner@proxmox.com \
    --to=f.ebner@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal