elasticsearch-transport 5.0.2 → 5.0.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 789ec1e3bb9aed97ffd4479cbf02bbad55265088
|
4
|
+
data.tar.gz: 3578fd13952bc2c03b3047114e3e461f87d50410
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08aed8209e065f8c50dcf6bbf1a9cd91b6f78b8e3f574c08f73bd04a6c48427548ea3f164721ec093af3ced98a96c029cdc7ef0a808f8c86426ee8a4294371eb
|
7
|
+
data.tar.gz: 6b99e2a8451e1b5aade9e276b95269b703601eea58d119df7e098c65a6794ecbfa8034057420ef1cad271abbafb4345147dcb5ebf7da70d1471224249acfb3fe
|
@@ -93,6 +93,10 @@ module Elasticsearch
|
|
93
93
|
def __build_connections
|
94
94
|
@request_options = {}
|
95
95
|
|
96
|
+
if options[:transport_options] && options[:transport_options][:headers]
|
97
|
+
@request_options[:headers] = options[:transport_options][:headers]
|
98
|
+
end
|
99
|
+
|
96
100
|
if options.key?(:headers)
|
97
101
|
@request_options[:headers] = options[:headers]
|
98
102
|
end
|
@@ -75,6 +75,19 @@ else
|
|
75
75
|
assert_equal response.status, 200
|
76
76
|
end
|
77
77
|
|
78
|
+
should "set headers from 'transport_options'" do
|
79
|
+
options = {
|
80
|
+
:transport_options => {
|
81
|
+
:headers => { "Content-Type" => "foo/bar"}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
transport = Manticore.new :hosts => [ { :host => 'localhost', :port => 8080 } ], :options => options
|
86
|
+
|
87
|
+
assert_equal('foo/bar', transport.connections.first.connection.instance_variable_get(:@options)[:headers]['Content-Type'])
|
88
|
+
# TODO: Needs to check @request_options
|
89
|
+
end
|
90
|
+
|
78
91
|
should "handle HTTP methods" do
|
79
92
|
@transport.connections.first.connection.expects(:delete).with('http://127.0.0.1:8080//', {}).returns(stub_everything)
|
80
93
|
@transport.connections.first.connection.expects(:head).with('http://127.0.0.1:8080//', {}).returns(stub_everything)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticsearch-transport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karel Minarik
|
@@ -332,24 +332,8 @@ dependencies:
|
|
332
332
|
- - ">="
|
333
333
|
- !ruby/object:Gem::Version
|
334
334
|
version: '0'
|
335
|
-
|
336
|
-
|
337
|
-
requirement: !ruby/object:Gem::Requirement
|
338
|
-
requirements:
|
339
|
-
- - "~>"
|
340
|
-
- !ruby/object:Gem::Version
|
341
|
-
version: '2'
|
342
|
-
type: :development
|
343
|
-
prerelease: false
|
344
|
-
version_requirements: !ruby/object:Gem::Requirement
|
345
|
-
requirements:
|
346
|
-
- - "~>"
|
347
|
-
- !ruby/object:Gem::Version
|
348
|
-
version: '2'
|
349
|
-
description: 'Ruby client for Elasticsearch. See the `elasticsearch` gem for full
|
350
|
-
integration.
|
351
|
-
|
352
|
-
'
|
335
|
+
description: |
|
336
|
+
Ruby client for Elasticsearch. See the `elasticsearch` gem for full integration.
|
353
337
|
email:
|
354
338
|
- karel.minarik@elasticsearch.org
|
355
339
|
executables: []
|
@@ -415,7 +399,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
415
399
|
version: '0'
|
416
400
|
requirements: []
|
417
401
|
rubyforge_project:
|
418
|
-
rubygems_version: 2.
|
402
|
+
rubygems_version: 2.2.2
|
419
403
|
signing_key:
|
420
404
|
specification_version: 4
|
421
405
|
summary: Ruby client for Elasticsearch.
|