Skip to content

Commit e2b6778

Browse files
committed
Fix dependency of aws-sdk
1 parent 8a8a620 commit e2b6778

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fluent-plugin-dynamodb-add.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
66
spec.name = "fluent-plugin-dynamodb-add"
77
spec.authors = ["Masayuki DOI"]
88
spec.email = ["[email protected]"]
9-
spec.version = '0.1.1'
9+
spec.version = '0.1.2'
1010
spec.licenses = ['MIT']
1111
spec.description = "Amazon DynamoDB atomic add plugin"
1212
spec.summary = spec.description
@@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
2020
spec.add_development_dependency "bundler", "~> 1.7"
2121
spec.add_development_dependency "rake", "~> 10.0"
2222
spec.add_dependency "fluentd", "~> 0.10.0"
23-
spec.add_dependency "aws-sdk", ">= 1.56.0"
23+
spec.add_dependency "aws-sdk", ">= 1.56.0", "< 2.0.0"
2424
end

lib/fluent/plugin/out_dynamodb_add.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DynamodbAdd < Fluent::Output
2121

2222
def initialize
2323
super
24-
require 'aws-sdk'
24+
require 'aws-sdk-v1'
2525
end
2626

2727
def configure(conf)

0 commit comments

Comments
 (0)