Skip to content

Commit

Permalink
ceph_volume_client: fix _recover_auth_meta() method
Browse files Browse the repository at this point in the history
It needs to be an instance method.

Fixes: http://tracker.ceph.com/issues/17216
Signed-off-by: Ramana Raja <rraja@redhat.com>
  • Loading branch information
ajarr committed Oct 4, 2016
1 parent 1102386 commit 675cb91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pybind/ceph_volume_client.py
Expand Up @@ -318,7 +318,7 @@ def recover(self):

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.
"""
Expand Down

0 comments on commit 675cb91

Please sign in to comment.