From dac6e9454d91d172495912845a42ac8aa1f1a929 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Fri, 2 Dec 2016 02:51:08 +0100 Subject: [PATCH] Add missing "do" to Concepts > Next Steps (#440) One thing channels do not **do**, however, ... --- docs/concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts.rst b/docs/concepts.rst index 6ee89dd..83a3b12 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -261,7 +261,7 @@ start thinking about them. Remember, Django provides some channels but you're free to make and consume your own, and all channels are network-transparent. -One thing channels do not, however, is guarantee delivery. If you need +One thing channels do not do, however, is guarantee delivery. If you need certainty that tasks will complete, use a system designed for this with retries and persistence (e.g. Celery), or alternatively make a management command that checks for completion and re-submits a message to the channel