Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/ops/celery/signal_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
logger = logging.getLogger(__file__)
safe_str = lambda x: x


def init_scheduler():
from common import job

from common.init import init_template
job.run()

init_template.run()
try:
from xpack import job as xpack_job

xpack_job.run()
except ImportError:
pass

pass


@worker_ready.connect
Expand Down