From: Patrick Donnelly Date: Wed, 24 Mar 2021 00:54:43 +0000 (-0700) Subject: qa: log snapshot changes during verification X-Git-Tag: v17.1.0~2320^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6b461745afd54e2dea9da3858b7f6c3488599f8f;p=ceph.git qa: log snapshot changes during verification Signed-off-by: Patrick Donnelly --- diff --git a/qa/tasks/cephfs/test_snap_schedules.py b/qa/tasks/cephfs/test_snap_schedules.py index f303d71d26c2..789a082af10a 100644 --- a/qa/tasks/cephfs/test_snap_schedules.py +++ b/qa/tasks/cephfs/test_snap_schedules.py @@ -118,8 +118,11 @@ class TestSnapSchedules(CephFSTestCase): snap_path = "{0}/.snap".format(dir_path) while (len(self.create_cbks) or len(self.remove_cbks)) and trials < max_trials: snapshots = set(self.mount_a.ls(path=snap_path)) + log.info(f"snapshots: {snapshots}") added = snapshots - self.snapshots + log.info(f"added: {added}") removed = self.snapshots - snapshots + log.info(f"removed: {removed}") if added: for cbk in list(self.create_cbks): res = cbk(list(added))