From: Alfredo Deza Date: Wed, 29 Aug 2018 16:55:31 +0000 (-0700) Subject: ceph-volume lvm.batch remove usage of non-existent method X-Git-Tag: v13.2.2~66^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b275d0f3ea705a8827e9d2458ac82fbbc010c01b;p=ceph.git ceph-volume lvm.batch remove usage of non-existent method Signed-off-by: Alfredo Deza (cherry picked from commit 6f3094449f46d10260c0a505b39571c35235292e) --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/batch.py b/src/ceph-volume/ceph_volume/devices/lvm/batch.py index 1c52278c52c3..4086064f5bdc 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')