From 6f3094449f46d10260c0a505b39571c35235292e Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Wed, 29 Aug 2018 09:55:31 -0700 Subject: [PATCH] ceph-volume lvm.batch remove usage of non-existent method Signed-off-by: Alfredo Deza --- src/ceph-volume/ceph_volume/devices/lvm/batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-volume/ceph_volume/devices/lvm/batch.py b/src/ceph-volume/ceph_volume/devices/lvm/batch.py index 1c52278c52c3c..4086064f5bdca 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/batch.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/batch.py @@ -137,7 +137,7 @@ class Batch(object): raise RuntimeError('report format must be "pretty" or "json"') def execute(self, args): - strategy = get_strategy(self.get_filtered_devices(args.devices), args) + strategy = get_strategy(args) if not args.yes: strategy.report_pretty() terminal.info('The above OSDs would be created if the operation continues') -- 2.39.5