File ceph-mgr-workaround-numpy-28271.patch of Package ceph
--- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -11,7 +11,7 @@ from prettytable import PrettyTable try: from natsort import natsorted -except ImportError: +except (ImportError, RuntimeError): # fallback to normal sort natsorted = sorted # type: ignore