Created
February 12, 2014 15:19
-
-
Save horiajurcut/8957414 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import absolute_import | |
from celery import Celery | |
app = Celery('workers', | |
broker='amqp://user:pass@localhost:5000/vhost', | |
include=['workers.tasks']) | |
app.conf.update( | |
CELERY_TASK_RESULT_EXPIRES=3600, | |
) | |
if __name__ == '__main__': | |
app.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment