Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
physical
Commits
16605d16
Commit
16605d16
authored
Dec 10, 2018
by
段英荣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify
parent
2ad20141
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
_celery.py
_celery.py
+40
-0
No files found.
_celery.py
0 → 100644
View file @
16605d16
# !/usr/bin/env python
# encoding=utf-8
from
__future__
import
absolute_import
import
os
# set the default Django settings module for the 'celery' program.
# os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'physical.settings'
)
import
raven
from
raven.contrib.celery
import
register_signal
,
register_logger_signal
from
celery
import
Celery
from
django.conf
import
settings
class
Celery
(
Celery
):
"""wrap for celery.Celery."""
def
on_configure
(
self
):
# check if sentry settings provided
if
not
settings
.
SENTRY_CELERY_ENDPOINT
:
return
client
=
raven
.
Client
(
settings
.
SENTRY_CELERY_ENDPOINT
)
# register a custom filter to filter out duplicate logs
register_logger_signal
(
client
)
# hook into the Celery error handler
register_signal
(
client
)
app
=
Celery
(
'gaia_tasks'
)
# Using a string here means the worker will not have to
# pickle the object when using Windows.
app
.
config_from_object
(
'django.conf:settings'
)
app
.
autodiscover_tasks
(
lambda
:
settings
.
INSTALLED_APPS
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment