This document describes the current stable version of Celery (3.1). For development docs, go here.
celery.app.utils¶
celery.app.utils¶
App utilities: Compat settings, bugreport tool, pickling apps.
-
class
celery.app.utils.Settings(changes, defaults)[source]¶ Celery settings object.
-
BROKER_BACKEND¶ Deprecated compat alias to
BROKER_TRANSPORT.
-
BROKER_TRANSPORT¶
-
BROKER_URL¶
-
CELERY_RESULT_BACKEND¶
-
CELERY_TIMEZONE¶
-
find_option(name, namespace='celery')[source]¶ Search for option by name.
Will return
(namespace, key, type)tuple, e.g.:>>> from proj.celery import app >>> app.conf.find_option('disable_rate_limits') ('CELERY', 'DISABLE_RATE_LIMITS', <Option: type->bool default->False>))
Parameters: - name – Name of option, cannot be partial.
- namespace – Preferred namespace (
CELERYby default).
-
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('CELERY', 'DISABLE_RATE_LIMITS') False
-
-
celery.app.utils.bugreport(app)[source]¶ Return a string containing information useful in bug reports.