Skip to content

Commit

Permalink
Fix wrong type of the "host" option: it's a string, not an integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Nov 21, 2014
1 parent 55b0cd8 commit dbaf532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/droonga-http-server-configure
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function tryResetConfigs() {
options.systemLogFile = 'droonga-http-server.system.log';
options.environment = 'production';

setIntegerOption('host', 'IP address to accept requests from clients (0.0.0.0 means "any IP address")')
setStringOption('host', 'IP address to accept requests from clients (0.0.0.0 means "any IP address")')
.then(function() { return setIntegerOption('port', 'port'); })
.then(function() { return setStringOption('receiveHostName', 'hostname of this node'); })
.then(function() { return setStringsOption('droongaEngineHostNames', 'hostnames of droonga-engine nodes'); })
Expand Down

0 comments on commit dbaf532

Please sign in to comment.