log2json 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/redis2es +1 -1
- data/log2json.gemspec +1 -1
- metadata +2 -2
data/bin/redis2es
CHANGED
@@ -142,7 +142,7 @@ def main
|
|
142
142
|
# try to queue up to FLUSH_SIZE.
|
143
143
|
begin
|
144
144
|
length = FLUSH_SIZE - @queue.length
|
145
|
-
@redis.evalsha(@redis_script_sha, [REDIS_QUEUE], length).each do |item|
|
145
|
+
@redis.evalsha(@redis_script_sha, [REDIS_QUEUE], [length]).each do |item|
|
146
146
|
enqueue(item)
|
147
147
|
end
|
148
148
|
rescue Redis::CommandError => e
|
data/log2json.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'log2json'
|
3
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.8'
|
4
4
|
s.summary = "Read, filter and ship logs. ie, poor man's roll-your-own, light-weight logstash replacement."
|
5
5
|
s.description = IO.read(File.join(File.dirname(__FILE__), 'README'))
|
6
6
|
s.authors = ['Jack Kuan']
|