2019-02-23 18:44:29 +04:00

13 lines
264 B
Python

from raven import Client
from app.core import config
from app.core.celery_app import celery_app
client_sentry = Client(config.SENTRY_DSN)
@celery_app.task(acks_late=True)
def test_celery(word: str):
print("test task")
return f"test task return {word}"