Skip to content

Commit 4ed2ea9

Browse files
committed
Return database connection into pool after configuration
When application code being loaded `has_closure_tree` method will get database connection implicitly and will not return it into the pool. In some circumstances this connection will not be available for request processing at runtime anymore.
1 parent f03ebd7 commit 4ed2ea9

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

lib/closure_tree/has_closure_tree.rb

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ def has_closure_tree(options = {})
2929

3030
include ClosureTree::DeterministicOrdering if _ct.order_option?
3131
include ClosureTree::NumericDeterministicOrdering if _ct.order_is_numeric?
32+
33+
connection_pool.release_connection
3234
rescue StandardError => e
3335
raise e unless ClosureTree.configuration.database_less
3436
end

lib/closure_tree/has_closure_tree_root.rb

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ def has_closure_tree_root(assoc_name, options = {})
8181

8282
@closure_tree_roots[assoc_name][assoc_map] = root
8383
end
84+
85+
connection_pool.release_connection
8486
end
8587
end
8688
end

spec/pool_spec.rb

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
require 'spec_helper'
2+
3+
describe 'Configuration' do
4+
it 'returns connection to the pool after has_closure_tree setup' do
5+
class TypeDuplicate < ActiveRecord::Base
6+
self.table_name = "namespace_type#{table_name_suffix}"
7+
has_closure_tree
8+
end
9+
expect(ActiveRecord::Base.connection_pool.active_connection?).to be_falsey # +false+ in AR 4, +nil+ in AR 5
10+
end
11+
12+
it 'returns connection to the pool after has_closure_tree setup with order' do
13+
class MetalDuplicate < ActiveRecord::Base
14+
self.table_name = "#{table_name_prefix}metal#{table_name_suffix}"
15+
has_closure_tree order: 'sort_order', name_column: 'value'
16+
end
17+
expect(ActiveRecord::Base.connection_pool.active_connection?).to be_falsey
18+
end
19+
20+
it 'returns connection to the pool after has_closure_tree_root setup' do
21+
class GroupDuplicate < ActiveRecord::Base
22+
self.table_name = "#{table_name_prefix}group#{table_name_suffix}"
23+
has_closure_tree_root :root_user
24+
end
25+
expect(ActiveRecord::Base.connection_pool.active_connection?).to be_falsey
26+
end
27+
end

0 commit comments

Comments
 (0)