From 3337b62e859673cba908bf8e12c7f3f23fddf2c2 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 2 Mar 2022 00:38:17 +0100 Subject: [PATCH] ceph-volume: fix generic activate afd8be7eac5e996c3bd07656601a4534053e2516 broke it. It has dropped`block_wal` and `block_db` from `ceph_volume.devices.raw.activate.activate_bluestore` but `activate.main.Activate.main` still passes those arguments when calling `RAWActivate([]).activate()` Fixes: https://tracker.ceph.com/issues/54441 Signed-off-by: Guillaume Abrioux --- src/ceph-volume/ceph_volume/activate/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ceph-volume/ceph_volume/activate/main.py b/src/ceph-volume/ceph_volume/activate/main.py index e1ab4fa2a29..bcd4685155d 100644 --- a/src/ceph-volume/ceph_volume/activate/main.py +++ b/src/ceph-volume/ceph_volume/activate/main.py @@ -50,8 +50,6 @@ class Activate(object): start_osd_uuid=self.args.osd_uuid, tmpfs=not self.args.no_tmpfs, systemd=not self.args.no_systemd, - block_wal=None, - block_db=None, ) return except Exception as e: -- 2.39.5