From 4429f99095ac8a06550fa08ab7048089c712c229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Sede=C3=B1o?= Date: Fri, 17 Apr 2020 14:25:35 -0400 Subject: [PATCH] Update documentation to say tasks are signed, not encrypted This resolves #300. --- README.rst | 2 +- docs/configure.rst | 4 ++-- docs/index.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 203adb3e..3ce58053 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/configure.rst b/docs/configure.rst index e526763c..85bed646 100644 --- a/docs/configure.rst +++ b/docs/configure.rst @@ -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 ~~~~~~~ @@ -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: diff --git a/docs/index.rst b/docs/index.rst index f2bb418d..14c2eeea 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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