From b4f962a486b340c682f500f6907c06469779d06b Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 6 Sep 2017 13:40:11 -0700 Subject: [PATCH] qa: log ceph-fuse kill/cleanup Signed-off-by: Patrick Donnelly --- qa/tasks/cephfs/fuse_mount.py | 2 ++ 1 file changed, 2 insertions(+) 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() -- 2.47.3