Skip to content

Commit

Permalink
Update lib/push/daemon.rb
Browse files Browse the repository at this point in the history
Fix undefined reference to configuration in daemon
  • Loading branch information
ippy04 committed Oct 30, 2012
1 parent 937f2e6 commit 2c329ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/push/daemon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def self.daemonize
def self.write_pid_file
if !config[:pid_file].blank?
begin
File.open(configuration[:pid_file], 'w') do |f|
File.open(config[:pid_file], 'w') do |f|
f.puts $$
end
rescue SystemCallError => e
Expand Down

0 comments on commit 2c329ab

Please sign in to comment.