Skip to content

Commit

Permalink
Add :long_polling_interval to Redis config blocklist
Browse files Browse the repository at this point in the history
As discussed in #330, an allowlist would be better still.

This is preventing us from upgrading to Redis 5.
  • Loading branch information
henrik committed Jun 28, 2023
1 parent a0808f3 commit 8cfda3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
28-06-2023

- Version 4.3.7

- FIX: Allow using `:long_polling_interval` with Redis gem version 5+.

- Version 4.3.6

- Don't error when trying to write a message to a closed client take 2
Expand Down
1 change: 1 addition & 0 deletions lib/message_bus/backends/redis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ def new_redis_connection
:backend,
:logger,
:long_polling_enabled,
:long_polling_interval,
:backend_options,
:base_route,
:client_message_filters,
Expand Down
2 changes: 1 addition & 1 deletion lib/message_bus/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MessageBus
VERSION = "4.3.6"
VERSION = "4.3.7"
end

0 comments on commit 8cfda3c

Please sign in to comment.