File tree 2 files changed +17
-1
lines changed
elasticsearch-model/lib/elasticsearch
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
require 'elasticsearch/model/support/forwardable'
8
8
9
+ require 'elasticsearch/model/version'
10
+
9
11
require 'elasticsearch/model/client'
10
12
11
13
require 'elasticsearch/model/adapter'
29
31
require 'elasticsearch/model/response/records'
30
32
require 'elasticsearch/model/response/pagination'
31
33
32
- require 'elasticsearch/model/version '
34
+ require 'elasticsearch/model/ext/active_record '
33
35
34
36
if defined? ( ::Kaminari )
35
37
Elasticsearch ::Model ::Response ::Response . __send__ :include , Elasticsearch ::Model ::Response ::Pagination ::Kaminari
Original file line number Diff line number Diff line change
1
+ # Prevent `MyModel.inspect` failing with `ActiveRecord::ConnectionNotEstablished`
2
+ # (triggered by elasticsearch-model/lib/elasticsearch/model.rb:79:in `included')
3
+ #
4
+ ActiveRecord ::Base . instance_eval do
5
+ class << self
6
+ def inspect_with_rescue
7
+ inspect_without_rescue
8
+ rescue ActiveRecord ::ConnectionNotEstablished
9
+ "#{ self } (no database connection)"
10
+ end
11
+
12
+ alias_method_chain :inspect , :rescue
13
+ end
14
+ end if defined? ( ActiveRecord ) && ActiveRecord ::VERSION ::STRING < '4'
You can’t perform that action at this time.
0 commit comments