From 675cb91b68c1b54698708d604253ab9d1b2abdec Mon Sep 17 00:00:00 2001 From: Ramana Raja Date: Tue, 4 Oct 2016 16:50:13 +0530 Subject: [PATCH] ceph_volume_client: fix _recover_auth_meta() method It needs to be an instance method. Fixes: http://tracker.ceph.com/issues/17216 Signed-off-by: Ramana Raja --- src/pybind/ceph_volume_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/ceph_volume_client.py b/src/pybind/ceph_volume_client.py index 1f653edd63c..e0939de3d54 100644 --- a/src/pybind/ceph_volume_client.py +++ b/src/pybind/ceph_volume_client.py @@ -318,7 +318,7 @@ class CephFSVolumeClient(object): log.debug("Recovered from partial auth updates (if any).") - def _recover_auth_meta(auth_id, auth_meta): + def _recover_auth_meta(self, auth_id, auth_meta): """ Call me after locking the auth meta file. """ -- 2.47.3