elastic_search_framework 2.0.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bb31cdcff7f6e3f40501c7dcadba923be7582ff8d91daec8e52d7dd8689e8da
|
|
4
|
+
data.tar.gz: b5c57937085a1719aae84d24fb10a93fbb582ec12ebe6f6b8c15f3aa987c053e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 214b8d927d48733fc52a98c7667621529efb9d68e331d8f4b3e4e70c76a2b72fd2e5d56f749cd5d0b2a6002316fd56bc77d9b68bf8091fe0402ea7c7f994db61
|
|
7
|
+
data.tar.gz: 8151848be2786d442eea281aa10e89338d06109b20bde72de2df87fd2f0b31a8a2279a9d560a035f66af92333657890cd5a34ed22dbb828a25e9d3003886d459
|
|
@@ -114,15 +114,15 @@ module ElasticSearchFramework
|
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
def idle_timeout
|
|
117
|
-
@idle_timeout ||= Integer(ENV['CONNECTION_IDLE_TIMEOUT'] ||
|
|
117
|
+
@idle_timeout ||= Integer(ENV['CONNECTION_IDLE_TIMEOUT'] || 5)
|
|
118
118
|
end
|
|
119
119
|
|
|
120
120
|
def read_timeout
|
|
121
|
-
@read_timeout ||= Integer(ENV['CONNECTION_READ_TIMEOUT'] ||
|
|
121
|
+
@read_timeout ||= Integer(ENV['CONNECTION_READ_TIMEOUT'] || 5)
|
|
122
122
|
end
|
|
123
123
|
|
|
124
124
|
def open_timeout
|
|
125
|
-
@
|
|
125
|
+
@open_timeout ||= Integer(ENV['CONNECTION_OPEN_TIMEOUT'] || 1)
|
|
126
126
|
end
|
|
127
127
|
|
|
128
128
|
def valid_response?(status)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic_search_framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaughanbrittonsage
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -148,8 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
|
-
|
|
152
|
-
rubygems_version: 2.7.7
|
|
151
|
+
rubygems_version: 3.0.3
|
|
153
152
|
signing_key:
|
|
154
153
|
specification_version: 4
|
|
155
154
|
summary: A lightweight framework to for working with elastic search.
|