Skip to content

Commit 3bc94cb

Browse files
committed
Fix ConnectionPool issue
1 parent 4c67647 commit 3bc94cb

6 files changed

+20
-0
lines changed

Appraisals

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,41 @@ end
4242

4343
appraise "active_support_8-1_redis_cache_store" do
4444
gem "activesupport", "~> 8.1.0"
45+
# Direct version requirement on connection_pool
46+
# can be removed once https://github.com/rails/rails#56291 is fixed and released
47+
gem "connection_pool", "~> 2.5"
4548
gem "redis", "~> 5.0"
4649
end
4750

4851
appraise "active_support_8-0_redis_cache_store" do
4952
gem "activesupport", "~> 8.0.0"
53+
# Direct version requirement on connection_pool
54+
# can be removed once https://github.com/rails/rails#56291 is fixed and released
55+
gem "connection_pool", "~> 2.5"
5056
gem "redis", "~> 5.0"
5157
end
5258

5359
appraise "active_support_7-2_redis_cache_store" do
5460
gem "activesupport", "~> 7.2.0"
61+
# Direct version requirement on connection_pool
62+
# can be removed once https://github.com/rails/rails#56291 is fixed and released
63+
gem "connection_pool", "~> 2.5"
5564
gem "redis", "~> 5.0"
5665
end
5766

5867
appraise "active_support_7-1_redis_cache_store" do
5968
gem "activesupport", "~> 7.1.0"
69+
# Direct version requirement on connection_pool
70+
# can be removed once https://github.com/rails/rails#56291 is fixed and released
71+
gem "connection_pool", "~> 2.5"
6072
gem "redis", "~> 5.0"
6173
end
6274

6375
appraise "active_support_7-0_redis_cache_store" do
6476
gem "activesupport", "~> 7.0.0"
77+
# Direct version requirement on connection_pool
78+
# can be removed once https://github.com/rails/rails#56291 is fixed and released
79+
gem "connection_pool", "~> 2.5"
6580
gem "redis", "~> 5.0"
6681
end
6782

gemfiles/active_support_7_0_redis_cache_store.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.0.0"
6+
gem "connection_pool", "~> 2.5"
67
gem "redis", "~> 5.0"
78

89
group :maintenance, optional: true do

gemfiles/active_support_7_1_redis_cache_store.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.1.0"
6+
gem "connection_pool", "~> 2.5"
67
gem "redis", "~> 5.0"
78

89
group :maintenance, optional: true do

gemfiles/active_support_7_2_redis_cache_store.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.2.0"
6+
gem "connection_pool", "~> 2.5"
67
gem "redis", "~> 5.0"
78

89
group :maintenance, optional: true do

gemfiles/active_support_8_0_redis_cache_store.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 8.0.0"
6+
gem "connection_pool", "~> 2.5"
67
gem "redis", "~> 5.0"
78

89
group :maintenance, optional: true do

gemfiles/active_support_8_1_redis_cache_store.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 8.1.0"
6+
gem "connection_pool", "~> 2.5"
67
gem "redis", "~> 5.0"
78

89
group :maintenance, optional: true do

0 commit comments

Comments
 (0)