From 434f9233981ee3f364e1359f02633e61183b0f74 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Mon, 23 Aug 2021 11:35:19 +0930 Subject: [PATCH] fix: typo --- kombu/transport/redis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kombu/transport/redis.py b/kombu/transport/redis.py index 33810cfcc..1bd6ba9bd 100644 --- a/kombu/transport/redis.py +++ b/kombu/transport/redis.py @@ -249,6 +249,7 @@ def parse_response(self, connection, command_name, **options): key = key[len(self.global_keyprefix):] return key, value return ret + def execute_command(self, *args, **kwargs): return super().execute_command(*self._prefix_args(args), **kwargs)