def setup(self): self.ev = events.events(app=self.app)
def setUp(self): self.app = app_or_default() self.ev = events.events(app=self.app)
""" 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)
""" 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)