replica_pools 2.4.0 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/replica_pools/connection_proxy.rb +5 -1
- data/lib/replica_pools/pools.rb +5 -2
- data/lib/replica_pools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbd92d614f51ed7b7d9ed39d174fff5b7574b6dfe1f9fc09370e823237b6278b
|
4
|
+
data.tar.gz: 03f068ac02942552e6aa847e95012f1e38f4dc56ba63f580459c7446290edf4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5aee205f1a54bfd92eaaa27dd6696f6d3ee337f58a95ee3f273a88167250c8fa9f5e4372ea18e2c261011c01d502f614aa6bc8d6b0225b3b77b58e1d960e5b7a
|
7
|
+
data.tar.gz: 81833fdc2aeb92f02ad89e907d8c36498e2816310ab8935590c312e052909cb244df315ad2038eaa809d625e379c9edf6c8e4ed3218f398f5b752f095282f9be
|
@@ -33,7 +33,11 @@ module ReplicaPools
|
|
33
33
|
# this ivar is for ConnectionAdapter compatibility
|
34
34
|
# some gems (e.g. newrelic_rpm) will actually use
|
35
35
|
# instance_variable_get(:@config) to find it.
|
36
|
-
|
36
|
+
if ActiveRecord::VERSION::MAJOR >= 7
|
37
|
+
@config = current.connection_db_config
|
38
|
+
else
|
39
|
+
@config = current.connection_config
|
40
|
+
end
|
37
41
|
end
|
38
42
|
|
39
43
|
def with_pool(pool_name = 'default')
|
data/lib/replica_pools/pools.rb
CHANGED
@@ -34,11 +34,14 @@ module ReplicaPools
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def config_hash
|
37
|
-
if ActiveRecord::VERSION::MAJOR
|
38
|
-
# in Rails
|
37
|
+
if ActiveRecord::VERSION::MAJOR > 6
|
38
|
+
# in Rails = 7, ActiveRecord::Base.configurations.to_h has been deprecated
|
39
39
|
ActiveRecord::Base.configurations.configs_for.map do |c|
|
40
40
|
[c.env_name, c.configuration_hash.transform_keys(&:to_s)]
|
41
41
|
end.to_h
|
42
|
+
elsif ActiveRecord::VERSION::MAJOR == 6
|
43
|
+
# in Rails = 6, `configurations` is an instance of ActiveRecord::DatabaseConfigurations
|
44
|
+
ActiveRecord::Base.configurations.to_h
|
42
45
|
else
|
43
46
|
# in Rails < 6, it's just a hash
|
44
47
|
ActiveRecord::Base.configurations
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: replica_pools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Drabik
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-02-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|