From: Patrick Donnelly Date: Wed, 6 Sep 2017 20:40:11 +0000 (-0700) Subject: qa: log ceph-fuse kill/cleanup X-Git-Tag: v13.0.1~980^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F17533%2Fhead;p=ceph.git qa: log ceph-fuse kill/cleanup Signed-off-by: Patrick Donnelly --- diff --git a/qa/tasks/cephfs/fuse_mount.py b/qa/tasks/cephfs/fuse_mount.py index 8d8410c69edc..3aa07a339e71 100644 --- a/qa/tasks/cephfs/fuse_mount.py +++ b/qa/tasks/cephfs/fuse_mount.py @@ -319,6 +319,7 @@ class FuseMount(CephFSMount): """ Terminate the client without removing the mount point. """ + log.info('Killing ceph-fuse connection on {name}...'.format(name=self.client_remote.name)) self.fuse_daemon.stdin.close() try: self.fuse_daemon.wait() @@ -329,6 +330,7 @@ class FuseMount(CephFSMount): """ Follow up ``kill`` to get to a clean unmounted state. """ + log.info('Cleaning up killed ceph-fuse connection') self.umount() self.cleanup()