]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: log snapshot changes during verification 40342/head
authorPatrick Donnelly <pdonnell@redhat.com>
Wed, 24 Mar 2021 00:54:43 +0000 (17:54 -0700)
committerPatrick Donnelly <pdonnell@redhat.com>
Wed, 24 Mar 2021 01:24:42 +0000 (18:24 -0700)
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
qa/tasks/cephfs/test_snap_schedules.py

index f303d71d26c2c161710e0092e23e34ecc9ae54f9..789a082af10a4b4285cb3fc44b96fd966ffab457 100644 (file)
@@ -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))