From 9821ab1a2f7e384ff68941d4ad719721533a9c2c Mon Sep 17 00:00:00 2001 From: Ryan Henning Date: Wed, 16 Feb 2022 11:55:54 -0600 Subject: [PATCH] Fix list of Redis commands used by `RedisPubSubChannelLayer` (#292) Followup of https://github.com/django/channels_redis/pull/291 to manually fix the auto-generated list. --- README.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.rst b/README.rst index f4be6d3..a78245e 100644 --- a/README.rst +++ b/README.rst @@ -224,8 +224,7 @@ Your Redis server must support the following commands: ``KEYS``, ``PIPELINE``, ``ZADD``, ``ZCOUNT``, ``ZPOPMIN``, ``ZRANGE``, ``ZREM``, ``ZREMRANGEBYSCORE`` -* ``RedisPubSubChannelLayer`` uses ``ADD``, ``COPY``, ``FLUSH``, ``GET``, - ``PUBLISH`` +* ``RedisPubSubChannelLayer`` uses ``PUBLISH``, ``SUBSCRIBE``, ``UNSUBSCRIBE`` Contributing ------------