Skip to content

Commit

Permalink
LOGSTASH-526: send password value to connect
Browse files Browse the repository at this point in the history
  • Loading branch information
fetep committed Jul 17, 2012
1 parent 2337670 commit a2ce400
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/logstash/inputs/redis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def connect
:port => @port,
:timeout => @timeout,
:db => @db,
:password => @password
:password => @password.value
)
end # def connect

Expand Down
2 changes: 1 addition & 1 deletion lib/logstash/outputs/redis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def connect
:port => @port,
:timeout => @timeout,
:db => @db,
:password => @password
:password => @password.value
)
end # def connect

Expand Down

0 comments on commit a2ce400

Please sign in to comment.