Skip to content

Commit

Permalink
Merge branch 'master' of github.com:logstash/logstash
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansissel committed Jul 17, 2013
2 parents 2d93385 + bbe41b8 commit 8a5ced1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/logstash/inputs/rabbitmq/hot_bunnies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ def register
@settings = {
:vhost => @vhost,
:host => @host,
:port => @port
:port => @port,
:user => @user
}
@settings[:pass] = @password.value if @password
@settings[:tls] = @ssl if @ssl
Expand Down
3 changes: 2 additions & 1 deletion lib/logstash/outputs/rabbitmq/hot_bunnies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ def connect
@settings = {
:vhost => @vhost,
:host => @host,
:port => @port
:port => @port,
:user => @user
}
@settings[:pass] = if @password
@password.value
Expand Down
4 changes: 2 additions & 2 deletions logstash.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ Gem::Specification.new do |gem|
end

if RUBY_PLATFORM != 'java'
gem.add_runtime_dependency "bunny", ["~> 0.9.0.rc2"] #(MIT license)
gem.add_runtime_dependency "bunny", ["~> 0.9.1"] #(MIT license)
else
gem.add_runtime_dependency "hot_bunnies", ["~> 2.0.0.pre8"] #(MIT license)
gem.add_runtime_dependency "hot_bunnies", ["~> 2.0.0.pre9"] #(MIT license)
end

if RUBY_VERSION >= '1.9.1'
Expand Down

0 comments on commit 8a5ced1

Please sign in to comment.