From da1f9d215fa9e86fa30d82de7032df05c6cbefb1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Mon, 26 Apr 2021 18:01:19 +0200 Subject: [PATCH] ceph-volume: fix "device" output MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit During https://github.com/ceph/ceph/commit/ec0f5f3b22d24754c16131a1996e42b787e4255f I changed "device" by "dev", let's revert that! Fixes: https://tracker.ceph.com/issues/50478 Signed-off-by: Sébastien Han --- src/ceph-volume/ceph_volume/devices/raw/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-volume/ceph_volume/devices/raw/list.py b/src/ceph-volume/ceph_volume/devices/raw/list.py index 7af049e017dc3..777930e983414 100644 --- a/src/ceph-volume/ceph_volume/devices/raw/list.py +++ b/src/ceph-volume/ceph_volume/devices/raw/list.py @@ -83,7 +83,7 @@ class List(object): 'osd_id': int(whoami), 'osd_uuid': oj[dev]['osd_uuid'], 'ceph_fsid': oj[dev]['ceph_fsid'], - 'dev': dev + 'device': dev } return result -- 2.39.5