summaryrefslogtreecommitdiff
path: root/kombu/transport/redis.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/transport/redis.py')
-rw-r--r--kombu/transport/redis.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kombu/transport/redis.py b/kombu/transport/redis.py
index 57a5a63b..6cbfbdcf 100644
--- a/kombu/transport/redis.py
+++ b/kombu/transport/redis.py
@@ -1185,8 +1185,8 @@ class Channel(virtual.Channel):
if asynchronous:
class Connection(connection_cls):
- def disconnect(self):
- super().disconnect()
+ def disconnect(self, *args):
+ super().disconnect(*args)
channel._on_connection_disconnect(self)
connection_cls = Connection