fluent-plugin-output-solr 0.2.2 → 0.2.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: 51e820ac701e66673ab19adddf7d9757ee54c69e
4
- data.tar.gz: fcd107f35414905f61c65b89fc72669b2ee4d1b9
3
+ metadata.gz: 8acc7d9e4641d918c14e4a74ae86d63fc1266dbe
4
+ data.tar.gz: 9ce2c1d1d77987d8a3443a9d78cfb88194011ef0
5
5
  SHA512:
6
- metadata.gz: a4bd3175277c9a5af0b8843be712896bcc4a588eebd8e9ad6c856fa0b88a24378c2874517b2cf23ce9cdd35f7c1f9289a478344dcf1d6f9b08eb88a6becde8a1
7
- data.tar.gz: 3f6816f2c6f9b58973e7a34dd3e9512617d98c3902008ee799c183bfe99959a084883291b78dbd3412d32629ab1f9dd6b447c58d4bcedfea4f46a7628b879f2a
6
+ metadata.gz: 8110587864cbe43bf1bd6d3c2cd6c7f872a6f3dca77e74eb35a960439693f956e620fea2b3c78cc8362586e1e7982ee5bebce56780e6b2decf56978e515772cc
7
+ data.tar.gz: f92f9c63c28ae9bfab7aeb4aea7111e3cc9d24d35395e8a0121d2f5a3b8f305fdaf86d1dcec960737d717c433a5fd51ffa32da68bd064737fbf5d9a05f5f453d
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Fluent::Plugin::OutSolr
1
+ # Fluent::Plugin::SolrOutput
2
2
 
3
3
  This is a [Fluentd](http://fluentd.org/) output plugin for send data to [Apache Solr](http://lucene.apache.org/solr/). It support [SolrCloud](https://cwiki.apache.org/confluence/display/solr/SolrCloud) not only Standalone Solr.
4
4
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-output-solr"
7
- spec.version = "0.2.2"
7
+ spec.version = "0.2.3"
8
8
  spec.authors = ["Minoru Osuka"]
9
9
  spec.email = ["minoru.osuka@gmail.com"]
10
10
 
@@ -58,7 +58,7 @@ module Fluent
58
58
  @collection = conf.has_key?('collection') ? conf['collection'] : DEFAULT_COLLECTION
59
59
 
60
60
  @defined_fields = conf['defined_fields']
61
- @ignore_undefined_field = conf.has_key?('ignore_undefined_field') ? conf['ignore_undefined_field'] : DEFAULT_IGNORE_UNDEFINED_FIELDS
61
+ @ignore_undefined_fields = conf.has_key?('ignore_undefined_fields') ? conf['ignore_undefined_fields'] : DEFAULT_IGNORE_UNDEFINED_FIELDS
62
62
 
63
63
  @unique_key_field = conf['unique_key_field']
64
64
  @tag_field = conf.has_key?('tag_field') ? conf['tag_field'] : DEFAULT_TAG_FIELD
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-output-solr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Minoru Osuka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-01-16 00:00:00.000000000 Z
11
+ date: 2016-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd