diff --git a/README.rst b/README.rst index 4ab5911..9bac1e2 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Features - Django Admin integration - PaaS compatible with multiple instances - Multi cluster monitor -- Redis +- Redis broker - Python 2 and 3 Requirements diff --git a/django_q/__init__.py b/django_q/__init__.py index 4cb49b5..9b84414 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -9,6 +9,6 @@ from .models import Task, Schedule, Success, Failure from .cluster import Cluster from .monitor import Stat -VERSION = (0, 4, 3) +VERSION = (0, 4, 5) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index 30d2441..fe87e52 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ author = 'Ilan Steemers' # The short X.Y version. version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.3' +release = '0.4.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 6cc3d28..edd6f27 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -20,7 +20,7 @@ Features - Django Admin integration - PaaS compatible with multiple instances - Multi cluster monitor -- Redis +- Redis broker - Python 2 and 3 diff --git a/docs/monitor.rst b/docs/monitor.rst index 3d175ac..5035ab8 100644 --- a/docs/monitor.rst +++ b/docs/monitor.rst @@ -46,7 +46,8 @@ TQ **Task Queue** counts the number of tasks in the queue [#f1]_ If this keeps rising it means you are taking on more tasks than your cluster can handle. -You can limit this by settings the :ref:`queue_limit` in your cluster configuration. +You can limit this by settings the :ref:`queue_limit` in your cluster configuration, after which it will turn green when that limit has been reached. +If your task queue is always hitting its limit and your running out of resources, it may be time to add another cluster. RQ ~~ @@ -143,7 +144,6 @@ Reference Returns true or false depending on any tasks still present in the task or result queue. - .. py:classmethod:: get(cluster_id, r=redis_client) Gets the current :class:`Stat` for the cluster id. Takes an optional redis connection. diff --git a/setup.py b/setup.py index d7176cd..c006c17 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class PyTest(Command): setup( name='django-q', - version='0.4.3', + version='0.4.5', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django task queue worker redis multiprocessing', @@ -48,7 +48,6 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3',