Minor updates to timeout docs

This commit is contained in:
Ilan
2015-07-16 21:01:27 +02:00
parent af5e99249f
commit 40ac0bfce5
2 changed files with 4 additions and 2 deletions

View File

@@ -65,11 +65,13 @@ recycle
The number of tasks a worker will process before recycling . Useful to release memory resources on a regular basis. Defaults to ``500``.
.. _timeout:
timeout
~~~~~~~
The number of seconds a worker is allowed to spend on a task before it's terminated. Defaults to ``None``, meaning it will never time out.
Set this to something that makes sense for your project.
Set this to something that makes sense for your project. Can be overridden for individual tasks.
compress
~~~~~~~~

View File

@@ -87,7 +87,7 @@ Reference
:type func: object
:param hook: Optional function to call after execution
:type hook: object
:param int timeout: timeout in seconds. Overrides the cluster setting.
:param int timeout: Overrides global cluster :ref:`timeout`.
:param bool sync: If set to True, async will simulate a task execution
:param redis: Optional redis connection
:param kwargs: Keyword arguments for the task function