From db4ec16be8e252576cc6ee25a0d238d88cc887fd Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 29 Aug 2012 12:18:26 +0200 Subject: [PATCH] Also report job description. --- rq/contrib/sentry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rq/contrib/sentry.py b/rq/contrib/sentry.py index 7ffe12b..abaef72 100644 --- a/rq/contrib/sentry.py +++ b/rq/contrib/sentry.py @@ -10,6 +10,7 @@ def register_sentry(client, worker): 'func': job.func, 'args': job.args, 'kwargs': job.kwargs, + 'description': job.description, }) worker.push_exc_handler(send_to_sentry)