Skip to content

Commit

Permalink
Merge branch 'master' into orm
Browse files Browse the repository at this point in the history
# Conflicts:
#	docs/conf.py
  • Loading branch information
Koed00 committed Sep 14, 2015
2 parents d67e6b9 + 991cf48 commit ff5531a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_q/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
from .cluster import Cluster
from .status import Stat

VERSION = (0, 6, 3)
VERSION = (0, 6, 4)

default_app_config = 'django_q.apps.DjangoQConfig'
7 changes: 4 additions & 3 deletions docs/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ All configuration settings are optional:
name
~~~~

Used to differentiate between projects using the same Redis server. Defaults to ``'default'``.
This can be useful if you have several projects using the same Redis server.
Used to differentiate between projects using the same broker.
On most broker types this will be used as the queue name.
Defaults to ``'default'``.

.. note::
Tasks are encrypted. When a worker encounters a task it can not decrypt, it will be discarded.
Tasks are encrypted. When a worker encounters a task it can not decrypt, it will be discarded or failed.

workers
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):

setup(
name='django-q',
version='0.6.3',
version='0.6.4',
author='Ilan Steemers',
author_email='[email protected]',
keywords='django task queue worker redis disque multiprocessing',
Expand Down

0 comments on commit ff5531a

Please sign in to comment.