]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
contextutil: Remove leftover print statement
authorZack Cerza <zack@redhat.com>
Thu, 29 Jun 2023 19:02:47 +0000 (13:02 -0600)
committerZack Cerza <zack@redhat.com>
Thu, 29 Jun 2023 19:03:25 +0000 (13:03 -0600)
Looks like this was missed during PR submission/review in 8f8d05852

Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/contextutil.py

index 4ddb825971707af3d485a97afc6fbfeab7fcd68a..dd6d2d68a72ebc532ca8b956b49c2301297890c4 100644 (file)
@@ -139,7 +139,6 @@ class safe_while(object):
         if self.timeout > 0:
             self.sleep_current = min(self.timeout - self.total_seconds, self.sleep_current)
         self.total_seconds += self.sleep_current
-        print(self.total_seconds, self.sleep_current)
         self.sleeper(self.sleep_current)
         return True