From: Volker Theile Date: Wed, 20 Nov 2019 12:14:00 +0000 (+0100) Subject: python-common: Fix typo in device type X-Git-Tag: v15.1.0~828^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F31758%2Fhead;p=ceph.git python-common: Fix typo in device type Signed-off-by: Volker Theile --- diff --git a/src/python-common/ceph/deployment/inventory.py b/src/python-common/ceph/deployment/inventory.py index 2b6a674032a..a5cd3481221 100644 --- a/src/python-common/ceph/deployment/inventory.py +++ b/src/python-common/ceph/deployment/inventory.py @@ -78,4 +78,4 @@ class Device(object): # type: () -> str if self.sys_api is None or 'rotational' not in self.sys_api: return "unknown" - return 'hdd' if self.sys_api["rotational"] == "1" else 'sdd/nvme' + return 'hdd' if self.sys_api["rotational"] == "1" else 'ssd/nvme'