fluent-plugin-sqs 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  require 'jeweler'
7
7
  Jeweler::Tasks.new do |gemspec|
8
8
  gemspec.name = "fluent-plugin-sqs"
9
- gemspec.summary = "Amazon SQS output plugin for Fluent event collector"
9
+ gemspec.summary = "Amazon SQS input/output plugin for Fluent event collector"
10
10
  gemspec.author = "Yuri Odagiri"
11
11
  gemspec.email = "ixixizko@gmail.com"
12
12
  gemspec.homepage = "https://github.com/ixixi/fluent-plugin-sqs"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.0
@@ -55,7 +55,7 @@ module Fluent
55
55
  record[:url] = message.queue.url.to_s
56
56
  record[:sender_id] = message.sender_id.to_s
57
57
 
58
- Engine.emit(@tag, Time.now, record)
58
+ Engine.emit(@tag, Time.now.to_i, record)
59
59
  end
60
60
  rescue
61
61
  $log.error "failed to emit or receive", :error => $!.to_s, :error_class => $!.class.to_s
@@ -93,4 +93,4 @@ describe do
93
93
 
94
94
  end
95
95
 
96
- end
96
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-29 00:00:00.000000000 Z
12
+ date: 2014-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jeweler
@@ -193,7 +193,7 @@ rubyforge_project:
193
193
  rubygems_version: 1.8.23
194
194
  signing_key:
195
195
  specification_version: 3
196
- summary: Amazon SQS output plugin for Fluent event collector
196
+ summary: Amazon SQS input/output plugin for Fluent event collector
197
197
  test_files:
198
198
  - spec/lib/fluent/plugin/in_sqs_spec.rb
199
199
  - spec/spec_helper.rb