Guest User

Untitled

a guest
Jul 31st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. ####################################
  2. ### CELERY CONFIG ####
  3. ####################################
  4. use_celery = true
  5. broker.host = localhost
  6. broker.vhost = rhodecode
  7. broker.port = 5672
  8. broker.user = rhodecode
  9. broker.password = **********
  10.  
  11. celery.imports = rhodecode.lib.celerylib.tasks
  12.  
  13. celery.result.backend = amqp
  14. celery.result.dburi = amqp://
  15. celery.result.serialier = json
  16.  
  17. #celery.send.task.error.emails = true
  18. #celery.amqp.task.result.expires = 18000
  19.  
  20. celeryd.concurrency = 2
  21. #celeryd.log.file = celeryd.log
  22. celeryd.log.level = debug
  23. celeryd.max.tasks.per.child = 1
  24.  
  25. #tasks will never be sent to the queue, but executed locally instead.
  26. celery.always.eager = false
Add Comment
Please, Sign In to add comment