From: Ramana Raja Date: Tue, 4 Oct 2016 11:20:13 +0000 (+0530) Subject: ceph_volume_client: fix _recover_auth_meta() method X-Git-Tag: v10.2.6~150^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bf33cd52a395b99453f72af016ea8f559ad3a13a;p=ceph.git 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 (cherry picked from commit 675cb91b68c1b54698708d604253ab9d1b2abdec) --- diff --git a/src/pybind/ceph_volume_client.py b/src/pybind/ceph_volume_client.py index aa6315787ccd..6182706dcf9a 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. """