test(playout): silence existing broad-exception-caught errors

This commit is contained in:
jo 2023-03-01 18:17:34 +01:00 committed by Kyle Robbertze
parent a77321190f
commit b17ff4afad
6 changed files with 17 additions and 17 deletions

View file

@ -153,6 +153,6 @@ class StatsCollectorThread(Thread):
while True:
try:
self._collector.collect(self._config.stream.outputs.merged)
except Exception as exception:
except Exception as exception: # pylint: disable=broad-exception-caught
logger.exception(exception)
sleep(120)