qa/tasks/fwd_scrub: remove unnecessary traceback

Fixes: https://tracker.ceph.com/issues/65820
Signed-off-by: Neeraj Pratap Singh <neesingh@redhat.com>
This commit is contained in:
neeraj pratap singh 2024-09-24 09:41:45 +05:30
parent 2ab14159a6
commit 334e79002b

View File

@ -33,6 +33,8 @@ class ForwardScrubber(ThrasherGreenlet):
def _run(self):
try:
self.do_scrub()
except ThrasherGreenlet.Stopped:
pass
except Exception as e:
self.set_thrasher_exception(e)
self.logger.exception("exception:")