logstash-output-custom-solr 0.1.9 → 0.1.11

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
  SHA256:
3
- metadata.gz: caff5818ed12363cf2e99065972b362b83091504f3ab3b3cbaa71da7fc963cec
4
- data.tar.gz: fe61bd444ad8459bcf07d3ba0d85a82cb5d7f04a436e8fd5f9a217e130e32f3f
3
+ metadata.gz: e4e4b9ade82563a8c44bf3df221d21180f486ad0ace95d8d17cc660cfdca567d
4
+ data.tar.gz: 8fa4578114cd03238c50bacc9436b2fdb8bde9f1123e9480ce683d632f32a252
5
5
  SHA512:
6
- metadata.gz: 479534610ef425312fc9c504d8e8ef00744aca5258f6351509b072735d23068e5d8bf26b25005e44af94b8df5f03f93859832bbe5f718541ee81cd156a9bf357
7
- data.tar.gz: 5216d2d7130e16f69ded860454be740e7422acab2e59fe932b4710e2ce58aaabb2eec0743e6f999fd1baff002a4bb530b3f943bcebc1f60896347156f81eeb55
6
+ metadata.gz: 9b72e8619b943193951c6b6e49b0e4a4d9c8138eee90a5e467c813903d85907833d9519e358aed5c4d7aa88fdbd2b8233260ece598e852794c3fe93ef350edfe
7
+ data.tar.gz: 1ee6c2b06e0be9e53fe1c5870c4fac965c4ab6c2c36581af680c96294651a2e5d4af44e3440ebc410c8a73646563f36dd8865ddba2abce4a95bf4317a7e4eba7
@@ -113,7 +113,7 @@ class LogStash::Outputs::Solr < LogStash::Outputs::Base
113
113
  end
114
114
  params[:commitWithin] = @commitWithin
115
115
 
116
- hash.each do |collection, documents|
116
+ documents_per_col.each do |collection, documents|
117
117
  if @mode == MODE_STANDALONE then
118
118
  @solr.add documents, :params => params
119
119
  @logger.info 'Added %d document(s) to Solr' % documents.count
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-custom-solr'
3
- s.version = "0.1.9"
3
+ s.version = "0.1.11"
4
4
  s.licenses = ["Apache License (2.0)"]
5
5
  s.summary = "Logstash output plugin for sending data to Solr."
6
6
  s.description = "Logstash output plugin for sending data to Solr. It supports SolrCloud, not only Standalone Solr."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-custom-solr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Minoru Osuka