elasticsearch-model 7.1.0.pre → 7.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -2
  3. data/README.md +11 -23
  4. data/Rakefile +9 -5
  5. data/elasticsearch-model.gemspec +37 -40
  6. data/examples/activerecord_article.rb +1 -1
  7. data/examples/activerecord_associations.rb +2 -2
  8. data/examples/activerecord_custom_analyzer.rb +3 -3
  9. data/examples/activerecord_mapping_completion.rb +1 -1
  10. data/examples/activerecord_mapping_edge_ngram.rb +1 -1
  11. data/examples/couchbase_article.rb +1 -1
  12. data/examples/datamapper_article.rb +1 -1
  13. data/examples/mongoid_article.rb +1 -1
  14. data/examples/ohm_article.rb +1 -1
  15. data/examples/riak_article.rb +1 -1
  16. data/gemfiles/4.0.gemfile +4 -3
  17. data/lib/elasticsearch/model.rb +4 -4
  18. data/lib/elasticsearch/model/adapter.rb +1 -1
  19. data/lib/elasticsearch/model/adapters/active_record.rb +2 -2
  20. data/lib/elasticsearch/model/adapters/default.rb +1 -1
  21. data/lib/elasticsearch/model/adapters/mongoid.rb +1 -1
  22. data/lib/elasticsearch/model/adapters/multiple.rb +1 -1
  23. data/lib/elasticsearch/model/callbacks.rb +1 -1
  24. data/lib/elasticsearch/model/client.rb +1 -6
  25. data/lib/elasticsearch/model/ext/active_record.rb +1 -1
  26. data/lib/elasticsearch/model/hash_wrapper.rb +1 -1
  27. data/lib/elasticsearch/model/importing.rb +1 -1
  28. data/lib/elasticsearch/model/indexing.rb +4 -4
  29. data/lib/elasticsearch/model/multimodel.rb +2 -2
  30. data/lib/elasticsearch/model/naming.rb +1 -1
  31. data/lib/elasticsearch/model/proxy.rb +1 -1
  32. data/lib/elasticsearch/model/response.rb +1 -1
  33. data/lib/elasticsearch/model/response/aggregations.rb +1 -1
  34. data/lib/elasticsearch/model/response/base.rb +1 -1
  35. data/lib/elasticsearch/model/response/pagination.rb +1 -1
  36. data/lib/elasticsearch/model/response/pagination/kaminari.rb +1 -1
  37. data/lib/elasticsearch/model/response/pagination/will_paginate.rb +1 -1
  38. data/lib/elasticsearch/model/response/records.rb +1 -1
  39. data/lib/elasticsearch/model/response/result.rb +1 -1
  40. data/lib/elasticsearch/model/response/results.rb +2 -1
  41. data/lib/elasticsearch/model/response/suggestions.rb +1 -1
  42. data/lib/elasticsearch/model/searching.rb +1 -1
  43. data/lib/elasticsearch/model/serializing.rb +1 -1
  44. data/lib/elasticsearch/model/version.rb +2 -2
  45. data/spec/elasticsearch/model/adapter_spec.rb +1 -1
  46. data/spec/elasticsearch/model/adapters/active_record/associations_spec.rb +1 -1
  47. data/spec/elasticsearch/model/adapters/active_record/basic_spec.rb +1 -1
  48. data/spec/elasticsearch/model/adapters/active_record/dynamic_index_name_spec.rb +1 -1
  49. data/spec/elasticsearch/model/adapters/active_record/import_spec.rb +1 -1
  50. data/spec/elasticsearch/model/adapters/active_record/multi_model_spec.rb +1 -1
  51. data/spec/elasticsearch/model/adapters/active_record/namespaced_model_spec.rb +1 -1
  52. data/spec/elasticsearch/model/adapters/active_record/pagination_spec.rb +1 -1
  53. data/spec/elasticsearch/model/adapters/active_record/parent_child_spec.rb +1 -1
  54. data/spec/elasticsearch/model/adapters/active_record/serialization_spec.rb +1 -1
  55. data/spec/elasticsearch/model/adapters/active_record_spec.rb +1 -1
  56. data/spec/elasticsearch/model/adapters/default_spec.rb +1 -1
  57. data/spec/elasticsearch/model/adapters/mongoid/basic_spec.rb +1 -1
  58. data/spec/elasticsearch/model/adapters/mongoid/multi_model_spec.rb +1 -1
  59. data/spec/elasticsearch/model/adapters/mongoid_spec.rb +1 -1
  60. data/spec/elasticsearch/model/adapters/multiple_spec.rb +1 -1
  61. data/spec/elasticsearch/model/callbacks_spec.rb +1 -1
  62. data/spec/elasticsearch/model/client_spec.rb +4 -4
  63. data/spec/elasticsearch/model/hash_wrapper_spec.rb +1 -1
  64. data/spec/elasticsearch/model/importing_spec.rb +1 -1
  65. data/spec/elasticsearch/model/indexing_spec.rb +17 -42
  66. data/spec/elasticsearch/model/module_spec.rb +3 -2
  67. data/spec/elasticsearch/model/multimodel_spec.rb +1 -1
  68. data/spec/elasticsearch/model/naming_spec.rb +1 -1
  69. data/spec/elasticsearch/model/proxy_spec.rb +1 -1
  70. data/spec/elasticsearch/model/response/aggregations_spec.rb +1 -1
  71. data/spec/elasticsearch/model/response/base_spec.rb +1 -1
  72. data/spec/elasticsearch/model/response/pagination/kaminari_spec.rb +1 -1
  73. data/spec/elasticsearch/model/response/pagination/will_paginate_spec.rb +1 -1
  74. data/spec/elasticsearch/model/response/records_spec.rb +1 -1
  75. data/spec/elasticsearch/model/response/response_spec.rb +1 -1
  76. data/spec/elasticsearch/model/response/result_spec.rb +1 -1
  77. data/spec/elasticsearch/model/response/results_spec.rb +13 -1
  78. data/spec/elasticsearch/model/searching_search_request_spec.rb +1 -1
  79. data/spec/elasticsearch/model/searching_spec.rb +1 -1
  80. data/spec/elasticsearch/model/serializing_spec.rb +1 -1
  81. data/spec/spec_helper.rb +1 -1
  82. data/spec/support/app.rb +2 -2
  83. data/spec/support/app/answer.rb +2 -2
  84. data/spec/support/app/article.rb +1 -1
  85. data/spec/support/app/article_for_pagination.rb +1 -1
  86. data/spec/support/app/article_no_type.rb +1 -1
  87. data/spec/support/app/article_with_custom_serialization.rb +1 -1
  88. data/spec/support/app/article_with_dynamic_index_name.rb +1 -1
  89. data/spec/support/app/author.rb +1 -1
  90. data/spec/support/app/authorship.rb +1 -1
  91. data/spec/support/app/category.rb +1 -1
  92. data/spec/support/app/comment.rb +1 -1
  93. data/spec/support/app/episode.rb +1 -1
  94. data/spec/support/app/image.rb +1 -1
  95. data/spec/support/app/import_article.rb +1 -1
  96. data/spec/support/app/mongoid_article.rb +1 -1
  97. data/spec/support/app/namespaced_book.rb +1 -1
  98. data/spec/support/app/parent_and_child_searchable.rb +1 -1
  99. data/spec/support/app/post.rb +1 -1
  100. data/spec/support/app/question.rb +1 -1
  101. data/spec/support/app/searchable.rb +1 -1
  102. data/spec/support/app/series.rb +1 -1
  103. metadata +42 -56
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -17,13 +17,10 @@
17
17
 
18
18
  module Elasticsearch
19
19
  module Model
20
-
21
20
  # Contains an `Elasticsearch::Client` instance
22
21
  #
23
22
  module Client
24
-
25
23
  module ClassMethods
26
-
27
24
  # Get the client for a specific model class
28
25
  #
29
26
  # @example Get the client for `Article` and perform API request
@@ -48,7 +45,6 @@ module Elasticsearch
48
45
  end
49
46
 
50
47
  module InstanceMethods
51
-
52
48
  # Get or set the client for a specific model instance
53
49
  #
54
50
  # @example Get the client for a specific record and perform API request
@@ -72,7 +68,6 @@ module Elasticsearch
72
68
  @client = client
73
69
  end
74
70
  end
75
-
76
71
  end
77
72
  end
78
73
  end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -270,7 +270,7 @@ module Elasticsearch
270
270
  def index_exists?(options={})
271
271
  target_index = options[:index] || self.index_name
272
272
 
273
- self.client.indices.exists(index: target_index) rescue false
273
+ self.client.indices.exists(index: target_index, ignore: 404)
274
274
  end
275
275
 
276
276
  # Deletes the index with corresponding name
@@ -290,7 +290,7 @@ module Elasticsearch
290
290
  self.client.indices.delete index: target_index
291
291
  rescue Exception => e
292
292
  if e.class.to_s =~ /NotFound/ && options[:force]
293
- client.transport.logger.debug("[!!!] Index does not exist (#{e.class})") if client.transport.logger
293
+ client.transport.transport.logger.debug("[!!!] Index does not exist (#{e.class})") if client.transport.transport.logger
294
294
  nil
295
295
  else
296
296
  raise e
@@ -317,7 +317,7 @@ module Elasticsearch
317
317
  self.client.indices.refresh index: target_index
318
318
  rescue Exception => e
319
319
  if e.class.to_s =~ /NotFound/ && options[:force]
320
- client.transport.logger.debug("[!!!] Index does not exist (#{e.class})") if client.transport.logger
320
+ client.transport.transport.logger.debug("[!!!] Index does not exist (#{e.class})") if client.transport.transport.logger
321
321
  nil
322
322
  else
323
323
  raise e
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -85,7 +85,7 @@ module Elasticsearch
85
85
  # @return [Array] the list of document types used for retrieving documents
86
86
  #
87
87
  def document_type
88
- models.map { |m| m.document_type }
88
+ models.map { |m| m.document_type }.compact.presence
89
89
  end
90
90
 
91
91
  # Get the client common for all models
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -42,6 +42,7 @@ module Elasticsearch
42
42
  response.response['hits']['hits'].map { |hit| Result.new(hit) }
43
43
  end
44
44
 
45
+ alias records results
45
46
  end
46
47
  end
47
48
  end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -17,6 +17,6 @@
17
17
 
18
18
  module Elasticsearch
19
19
  module Model
20
- VERSION = "7.1.0.pre"
20
+ VERSION = "7.2.0"
21
21
  end
22
22
  end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an