From: Samuel Just Date: Wed, 1 May 2013 20:14:53 +0000 (-0700) Subject: ceph_manager: mount_osd_data expects osd as a str X-Git-Tag: 1.1.0~2159^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=b124e8eafa06ca1c49306ed6fbe2839b6a5a6e97;p=teuthology.git ceph_manager: mount_osd_data expects osd as a str Signed-off-by: Samuel Just --- diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index 7ca9f9aa7c..3f6b75162f 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -826,7 +826,7 @@ class CephManager: if not remote.console.check_status(300): raise Exception('Failed to revive osd.{o} via ipmi'.format(o=osd)) teuthology.reconnect(self.ctx, 60, [remote]) - ceph_task.mount_osd_data(self.ctx, remote, osd) + ceph_task.mount_osd_data(self.ctx, remote, str(osd)) ceph_task.make_admin_daemon_dir(self.ctx, remote) self.ctx.daemons.get_daemon('osd', osd).reset() self.ctx.daemons.get_daemon('osd', osd).restart()