activerecord_partitioning 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -20,8 +20,15 @@ module ActiveRecordPartitioning
|
|
20
20
|
|
21
21
|
def [](klass_name)
|
22
22
|
config = ActiveRecordPartitioning.current_connection_pool_config
|
23
|
-
|
24
|
-
|
23
|
+
if config.nil?
|
24
|
+
if size == 1
|
25
|
+
values.first
|
26
|
+
else
|
27
|
+
raise NoActiveConnectionPoolError
|
28
|
+
end
|
29
|
+
else
|
30
|
+
@store[connection_pool_key(config)]
|
31
|
+
end
|
25
32
|
end
|
26
33
|
|
27
34
|
def []=(klass_name, pool)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord_partitioning
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 9
|
10
|
+
version: 0.0.9
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Xiao Li
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2013-10-
|
19
|
+
date: 2013-10-12 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: activerecord
|