Skip to content

Commit

Permalink
Merge pull request #429 from asedeno/signed-not-encrypted
Browse files Browse the repository at this point in the history
Update documentation to say tasks are signed, not encrypted
  • Loading branch information
Koed00 authored Apr 21, 2020
2 parents a53edd2 + 4429f99 commit 108050b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Features
- Multiprocessing worker pool
- Asynchronous tasks
- Scheduled and repeated tasks
- Encrypted and compressed packages
- Signed and compressed packages
- Failure and success database or cache
- Result hooks, groups and chains
- Django Admin integration
Expand Down
4 changes: 2 additions & 2 deletions docs/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ 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 or failed.
Tasks are signed. When a worker encounters a task with an invalid signature, it will be discarded or failed.

workers
~~~~~~~
Expand Down Expand Up @@ -207,7 +207,7 @@ of the cache connection you want to use instead of a direct Redis connection::


.. tip::
Django Q uses your ``SECRET_KEY`` to encrypt task packages and prevent task crossover. So make sure you have it set up in your Django settings.
Django Q uses your ``SECRET_KEY`` to sign task packages and prevent task crossover. So make sure you have it set up in your Django settings.

.. _disque_configuration:

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Features
- Multiprocessing worker pools
- Asynchronous tasks
- Scheduled and repeated tasks
- Encrypted and compressed packages
- Signed and compressed packages
- Failure and success database or cache
- Result hooks, groups and chains
- Django Admin integration
Expand Down

0 comments on commit 108050b

Please sign in to comment.