Browse Source

Remove unused processors

David Cramer 10 years ago
parent
commit
68a46f164e

+ 0 - 9
src/sentry/processors/__init__.py

@@ -1,9 +0,0 @@
-"""
-sentry.processors
-~~~~~~~~~~~~~~~~~
-
-:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
-:license: BSD, see LICENSE for more details.
-"""
-
-from sentry.processors.base import *  # NOQA

+ 0 - 16
src/sentry/processors/base.py

@@ -1,16 +0,0 @@
-"""
-sentry.processors.base
-~~~~~~~~~~~~~~~~~~~~~~
-
-:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
-:license: BSD, see LICENSE for more details.
-"""
-
-from sentry.tasks.post_process import post_process_group
-
-
-__all__ = ('send_group_processors',)
-
-
-def send_group_processors(group, event, **kwargs):
-    post_process_group.delay(event=event, **kwargs)

+ 0 - 17
src/sentry/processors/console.py

@@ -1,17 +0,0 @@
-"""
-sentry.processors.console
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
-:license: BSD, see LICENSE for more details.
-"""
-from __future__ import print_function
-
-from .base import Processor
-
-
-class ConsoleProcessor(Processor):
-    def post_process(self, event, **kwargs):
-        print('Received an event:')
-        print('  ID:', event.event_id)
-        print('  Project:', event.project.name)