summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Smith <39445562+smithdc1@users.noreply.github.com>2020-06-02 13:37:16 +0100
committerGitHub <noreply@github.com>2020-06-02 14:37:16 +0200
commit06c8565a4650b359bdfa59f9707eaa0d1dfd7223 (patch)
tree3e74c22ac8f35c398827563964ff7a211209347f /docs
parent0daddf093f5d17a8d2ddec84ae16f6dae978a480 (diff)
Updated link to Celery.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/transactions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index 44a21e5ee2..3eace66c83 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -281,7 +281,7 @@ Sometimes you need to perform an action related to the current database
transaction, but only if the transaction successfully commits. Examples might
include a `Celery`_ task, an email notification, or a cache invalidation.
-.. _Celery: http://www.celeryproject.org/
+.. _Celery: https://pypi.org/project/celery/
Django provides the :func:`on_commit` function to register callback functions
that should be executed after a transaction is successfully committed: