Skip to content

Revert "Ignore noisy GroupCoordinator timeouts from SCiMMA"

This reverts commit 1b8addc4.

So on emfollow test I can see that with this change new issues are getting logged in Sentry. The capture_message in the gwcelery shell is also getting logged. What is not logged is something like raise RuntimeError while in the shell. However doing the following logs it here though not with the intended behavior since the task is not registered

In [2]: @app.task
   ...: def raise_a_type_error(*args, **kwargs):
   ...:     raise TypeError("Raising a type error")
   ...: 

In [3]: r = raise_a_type_error.delay()

Merge request reports