예제 #1
0
 def setup(self):
     self.ev = events.events(app=self.app)
예제 #2
0
 def setUp(self):
     self.app = app_or_default()
     self.ev = events.events(app=self.app)
예제 #3
0
"""

Shortcut to the Django snapshot service.

"""
from __future__ import absolute_import, unicode_literals

from celery.bin import events

from djcelery.app import app
from djcelery.management.base import CeleryCommand

ev = events.events(app=app)


class Command(CeleryCommand):
    """Run the celery curses event viewer."""
    options = (CeleryCommand.options
             + ev.get_options()
             + ev.preload_options)
    help = 'Takes snapshots of the clusters state to the database.'

    def handle(self, *args, **options):
        """Handle the management command."""
        options['camera'] = 'djcelery.snapshot.Camera'
        ev.run(*args, **options)
예제 #4
0
 def setup(self):
     self.ev = events.events(app=self.app)
예제 #5
0
"""

Shortcut to the Django snapshot service.

"""
from __future__ import absolute_import, unicode_literals

from celery.bin import events

from djcelery.app import app
from djcelery.management.base import CeleryCommand

ev = events.events(app=app)


class Command(CeleryCommand):
    """Run the celery curses event viewer."""
    help = 'Takes snapshots of the clusters state to the database.'
    options = (
        tuple(CeleryCommand.options) +
        tuple(ev.get_options()) +
        tuple(getattr(ev, 'preload_options', ()))
    )

    def handle(self, *args, **options):
        """Handle the management command."""
        options['camera'] = 'djcelery.snapshot.Camera'
        ev.run(*args, **options)
예제 #6
0
 def setUp(self):
     self.app = app_or_default()
     self.ev = events.events(app=self.app)