This document describes the current stable version of Celery (5.2). For development docs, go here.
celery.app.utils
¶
App utilities: Compat settings, bug-report tool, pickling apps.
- class celery.app.utils.Settings(*args, deprecated_settings=None, **kwargs)[source]¶
Celery settings object.
- property broker_read_url¶
- property broker_url¶
- property broker_write_url¶
- find_option(name, namespace='')[source]¶
Search for option by name.
Example
>>> from proj.celery import app >>> app.conf.find_option('disable_rate_limits') ('worker', 'prefetch_multiplier', <Option: type->bool default->False>))
- find_value_for_key(name, namespace='celery')[source]¶
Shortcut to
get_by_parts(*find_option(name)[:-1])
.
- get_by_parts(*parts)[source]¶
Return the current value for setting specified as a path.
Example
>>> from proj.celery import app >>> app.conf.get_by_parts('worker', 'disable_rate_limits') False
- humanize(with_defaults=False, censored=True)[source]¶
Return a human readable text showing configuration changes.
- property result_backend¶
- property task_default_exchange¶
- property task_default_routing_key¶
- property timezone¶
- celery.app.utils.bugreport(app)[source]¶
Return a string containing information useful in bug-reports.
Filter sensitive settings.