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

@ -60,7 +60,7 @@ class MessageHandler(ConsumerMixin):
else:
logger.warning("invalid command: %s", command)
except Exception as exception:
except Exception as exception: # pylint: disable=broad-exception-caught
logger.exception(exception)
message.ack()