Navigation Menu

Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 10, 2015
1 parent 67ce4de commit 4b7e970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/droonga/plugins/system/absorb_data.rb
Expand Up @@ -57,9 +57,9 @@ def handle(message)
def dumper_params(message)
{
:host => message["host"],
:port => message["port"] ||= NodeName::DEFAULT_PORT,
:tag => message["tag"] ||= NodeName::DEFAULT_TAG,
:dataset => message["dataset"] ||= Catalog::Dataset::DEFAULT_NAME,
:port => message["port"] || NodeName::DEFAULT_PORT,
:tag => message["tag"] || NodeName::DEFAULT_TAG,
:dataset => message["dataset"] || Catalog::Dataset::DEFAULT_NAME,

:receiver_host => myself.host,
:receiver_port => 0,
Expand Down

0 comments on commit 4b7e970

Please sign in to comment.