Tivix / django-cron

Write cron business logic as a Python class and let this app do the rest! It enables Django projects to schedule cron tasks, tracks their success / failures, manages contention (via a cache) etc. Basically takes care of all the boring work for you :-)
www.tivix.com
MIT License
900 stars 193 forks source link

Allow custom handlers to catch the cron job exceptions #95

Closed pardo closed 7 years ago

pardo commented 8 years ago

I wanted to be able to use custom handlers for exceptions instead of waiting for the FailedRunsNotificationCronJob to run

coveralls commented 8 years ago

Coverage Status

Coverage increased (+0.04%) to 89.861% when pulling f20ab30b0a2ee85aa2032c5a384fe1dc2bc95a73 on pardo:master into 57bd91260bb658911880813dbac06f79483ac601 on Tivix:master.

tab-cmd commented 7 years ago

@pardo closing in favor of #90. Would custom handlers for warnings work ok?

pardo commented 7 years ago

@sci-tab yes , my original idea was being able to track errors with sentry. Thanks!