2019-01-11 19:16:01 +00:00
|
|
|
import os
|
|
|
|
from celery import Celery
|
|
|
|
|
|
|
|
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
|
|
|
|
|
|
|
app = Celery('telegram_bots')
|
|
|
|
|
2019-01-19 06:52:00 +00:00
|
|
|
app.config_from_object({
|
2019-03-08 10:56:36 +00:00
|
|
|
'broker_url': 'redis://127.0.0.1:6379/4',
|
2019-01-26 09:36:44 +00:00
|
|
|
'result_backend': 'django-db',
|
|
|
|
'beat_scheduler': 'django_celery_beat.schedulers:DatabaseScheduler',
|
|
|
|
'worker_concurrency': 4,
|
|
|
|
'ONCE': {
|
|
|
|
'backend': 'celery_once.backends.Redis',
|
|
|
|
'settings': {
|
2019-03-08 10:56:36 +00:00
|
|
|
'url': 'redis://localhost:6379/4',
|
2019-01-26 09:36:44 +00:00
|
|
|
'default_timeout': 60 * 60,
|
|
|
|
}
|
|
|
|
}
|
2019-01-19 06:52:00 +00:00
|
|
|
})
|
2019-01-11 19:16:01 +00:00
|
|
|
app.autodiscover_tasks()
|
|
|
|
|
|
|
|
|
|
|
|
@app.task(bind=True)
|
|
|
|
def debug_task(self):
|
|
|
|
print('Request: {0!r}'.format(self.request))
|