From a51eea7655bd2233b0abeaf2ffa5ca29e659219d Mon Sep 17 00:00:00 2001 From: Adrien S Date: Fri, 28 Apr 2023 12:35:33 +0200 Subject: [PATCH] Fix bad exclusion of messagebus configuration option in redis connection --- CHANGELOG | 4 ++++ lib/message_bus/backends/redis.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d23c241a..202dfcdd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +FUTURE + +- FIX: Typo in `group_ids_lookup` option name in Redis params exclusion list that was preventing the use of the redis backend along with this option. + 28-06-2023 - Version 4.3.7 diff --git a/lib/message_bus/backends/redis.rb b/lib/message_bus/backends/redis.rb index f6a955c9..d4b40308 100644 --- a/lib/message_bus/backends/redis.rb +++ b/lib/message_bus/backends/redis.rb @@ -364,7 +364,7 @@ def new_redis_connection :base_route, :client_message_filters, :site_id_lookup, - :group_id_lookup, + :group_ids_lookup, :user_id_lookup, :transport_codec ].include?(k)