Add missing "do" to Concepts > Next Steps (#440)

One thing channels do not **do**, however, ...
This commit is contained in:
Carlton Gibson 2016-12-02 02:51:08 +01:00 committed by Andrew Godwin
parent 920dd74fa4
commit dac6e9454d

View File

@ -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