fluent-plugin-redis-store 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 0c2db458d39cf72f93460102e6421b9d1b270bbc
4
- data.tar.gz: c801090f87a8d00bc142016ed871d7a04a4f847b
3
+ metadata.gz: 95036e4098ab39a3e98842db2c4dd218775b6bd4
4
+ data.tar.gz: 706c13e644b3bda9d1fedfdc68270472cb3bd9eb
5
5
  SHA512:
6
- metadata.gz: 8aa1ec479a471ac96a86632b90ed6560447a632579768cd13b7d0bffc0fef8ac9e91ed65bdf67aa1f7f6ab2ac4fa952c63d2ea5fbb08279c9e21a902d976825b
7
- data.tar.gz: b51ea99f33bd87b5510b967dc22ab21c92540a355af8814cbc62b02812acc50258de0fa9a762b3c9c0cd23e7f87f39978ced799d2f53446b25e5ba71dffc6c1d
6
+ metadata.gz: faca10bb7f38d4f83aa71aa44387f84ca1b596793087b067edf6cddf8be4e94f915b86b22f49067bded805d3a055970ae9389668c42d39d6564eeea2f95fed0e
7
+ data.tar.gz: d3b306b8003a6894ec3bd1001be95511de840b4aee4405667272a433b0abf2ce33a0d998a1cd07bc085eacc1bd0122bbfc0e21ba76fb226f308dac839d2b4b67
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = "fluent-plugin-redis-store"
4
4
  gem.email = "hanai@pokelabo.co.jp"
5
- gem.version = "0.1.0"
5
+ gem.version = "0.1.1"
6
6
  gem.authors = ["moaikids", "HANAI Tohru aka pokehanai"]
7
7
  gem.licenses = ["Apache License Version 2.0"]
8
8
  gem.summary = %q{Redis(zset/set/list/string/publish) output plugin for Fluentd}
@@ -41,10 +41,10 @@ module Fluent
41
41
  def start
42
42
  super
43
43
  if @path
44
- @redis = Redis.new(:path => @path, :password => @parsword,
44
+ @redis = Redis.new(:path => @path, :password => @password,
45
45
  :timeout => @timeout, :thread_safe => true, :db => @db)
46
46
  else
47
- @redis = Redis.new(:host => @host, :port => @port, :password => @parsword,
47
+ @redis = Redis.new(:host => @host, :port => @port, :password => @password,
48
48
  :timeout => @timeout, :thread_safe => true, :db => @db)
49
49
  end
50
50
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-redis-store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - moaikids
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-24 00:00:00.000000000 Z
12
+ date: 2014-06-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake