From: Sage Weil Date: Wed, 23 Oct 2019 19:06:56 +0000 (-0500) Subject: mgr/orchestrator: s/sdd/ssd/ X-Git-Tag: v15.1.0~1179^2~14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22d83b0b0d0f3f8502ba11176388d47cf7108151;p=ceph.git mgr/orchestrator: s/sdd/ssd/ Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/orchestrator.py b/src/pybind/mgr/orchestrator.py index 09edecbbca4b..79764720cb2a 100644 --- a/src/pybind/mgr/orchestrator.py +++ b/src/pybind/mgr/orchestrator.py @@ -868,7 +868,7 @@ class InventoryDevice(object): dev = InventoryDevice() dev.id = data["path"] - dev.type = 'hdd' if data["sys_api"]["rotational"] == "1" else 'sdd/nvme' + dev.type = 'hdd' if data["sys_api"]["rotational"] == "1" else 'ssd/nvme' dev.size = data["sys_api"]["size"] dev.rotates = data["sys_api"]["rotational"] == "1" dev.available = data["available"]