null+****@clear*****
null+****@clear*****
2012年 6月 8日 (金) 18:14:32 JST
Haruka Yoshihara 2012-06-08 18:14:32 +0900 (Fri, 08 Jun 2012)
New Revision: ea6233d3743dfe1be58ad7879ebcf55575c1fef0
Log:
groonga_option -> groonga_options
Modified files:
lib/groonga/tester.rb
Modified: lib/groonga/tester.rb (+3 -3)
===================================================================
--- lib/groonga/tester.rb 2012-06-08 18:11:37 +0900 (f33ca86)
+++ lib/groonga/tester.rb 2012-06-08 18:14:32 +0900 (1857fd9)
@@ -322,11 +322,11 @@ module Groonga
if /groonga-httpd$/ =~ @tester.groonga
db_path = context.db_path
config_file = create_temporary_config_file(host, port, db_path)
- groonga_option = [
+ groonga_options = [
"-c", config_file.path,
]
else
- groonga_option = [
+ groonga_options = [
"--bind-address", host,
"--port", port.to_s,
"--protocol", @tester.protocol.to_s,
@@ -340,7 +340,7 @@ module Groonga
@tester.groonga,
"--pid-path", pid_file.path,
]
- command_line.concat(groonga_option)
+ command_line.concat(groonga_options)
system(*command_line)
begin
executor = HTTPExecutor.new(host, port, context)