Skip to content

Commit

Permalink
Ignore undefined pid_file_path in the static configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Nov 7, 2014
1 parent 6ac77fa commit d6ca2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/droonga/command/droonga_engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def initialize
@ready_notify_fd = nil

if have_config_file?
self.pid_file_path = config["pid_file"]
self.pid_file_path = config["pid_file"] if config["pid_file"]
self.log_file = config["log_file"] || Path.default_log_file
self.log_level = config["log_level"] if config.include?("log_level")
end
Expand Down

0 comments on commit d6ca2f7

Please sign in to comment.