Lau Bech Lauritzen
Lau Bech Lauritzen
I've accomplished this by adding a post_save hook on the job object which pushes the cron exception message to Sentry: ```python from django_cron.models import CronJobLog from django.db.models.signals import post_save from...
True, which is actually a big shortcoming. You could create a decorator to streamline the code a bit: ```python from functools import wraps def sentry_exceptions(func): @wraps(func) def inner(*args, **kwargs): try:...
Seems like a good and simple solution. @sci-tab any chance it can be merged in?
I can't see that @msopko81 problem should be a blocker. For those special cases just keep the default config. Any update on when this will me merged in?