diff docs/setup.rst @ 8268:f8f50d3b6512

celery: upgrade to Celery 4 Celery 3 doesn't support Python 3.7 or later. This upgrade is thus essential for full Python 3 support. But note that https://docs.celeryproject.org/en/4.4.0/faq.html#does-celery-support-windows says "No". The names of config settings changed in Celery 3 to 4, as described on https://docs.celeryproject.org/en/3.0/whatsnew-4.0.html#lowercase-setting-names . Celery 4 config settings can now be specified in Kallithea .ini files by prefixing with `celery.` - for example as `celery.broker_url`. Remain backwards compatible for the usual settings, and map old names to the new names.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 20 Feb 2020 02:03:24 +0100
parents 01aca0a4f876
children 68d4aae74194 a9e71e61cedf
line wrap: on
line diff
--- a/docs/setup.rst	Mon Feb 24 18:37:31 2020 +0100
+++ b/docs/setup.rst	Thu Feb 20 02:03:24 2020 +0100
@@ -332,11 +332,11 @@
 
   use_celery = true
 
-and add or change the ``celery.*`` and ``broker.*`` configuration variables.
+and add or change the ``celery.*`` configuration variables.
 
-Remember that the ini files use the format with '.' and not with '_' like
-Celery. So for example setting `BROKER_HOST` in Celery means setting
-`broker.host` in the configuration file.
+Configuration settings are prefixed with 'celery.', so for example setting
+`broker_url` in Celery means setting `celery.broker_url` in the configuration
+file.
 
 To start the Celery process, run::