From 24ac88f44bc098afa39ff04c165c7d49f4accea5 Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Wed, 1 Feb 2012 09:35:41 -0800 Subject: [PATCH] update with latest --- listener/docs/source/client/django.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/listener/docs/source/client/django.rst b/listener/docs/source/client/django.rst index ee23aef..cd24712 100644 --- a/listener/docs/source/client/django.rst +++ b/listener/docs/source/client/django.rst @@ -120,6 +120,8 @@ The options are: ARECIBO_SETTINGS = { 'CALLBACKS': [stop_google,] + # These can be any importable function for example: + # 'myapp.utils.arecibo_callback' } * GROUP_POSTS - boolean, True or False to activate grouping of posts. If you do this, then all errors get passed to celery and wait for GROUP_WAIT seconds before sending it. It will then count the number of times this error has occurred in those GROUP_WAIT seconds. It will then send only ONE error, with the count of the number of times it occurred. This is to prevent one problem on the site that causes lots of errors filling up your site with junk. For example if the database goes down, one error will suffice on that subject, not 6,000 per second. *Note*: this requires celery and memcache to be functioning.