]> git.openstreetmap.org Git - rails.git/commitdiff
Fix for postgres boolean support
authorTom Hughes <tom@compton.nu>
Fri, 8 Oct 2010 11:27:37 +0000 (12:27 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 8 Oct 2010 11:27:37 +0000 (12:27 +0100)
lib/daemons/gpx_import.rb

index e24dc1ad5347e43b141ad9f69131a7ad53a852cc..8250a67f55b8b1897ba90f9a8f938ce1f6348910 100755 (executable)
@@ -12,7 +12,7 @@ logger = ActiveRecord::Base.logger
 while(true) do
   ActiveRecord::Base.logger.info("GPX Import daemon wake @ #{Time.now}.")
 
-  Trace.find(:all, :conditions => "inserted = 0 and visible = 1", :order => "id").each do |trace|
+  Trace.find(:all, :conditions => { :inserted => false, :visible => true }, :order => "id").each do |trace|
     Signal.trap("TERM") do 
       terminated = true
     end
@@ -38,7 +38,7 @@ while(true) do
     exit if terminated
   end
 
-  Trace.find(:all, :conditions => "visible = 0", :order => "id").each do |trace|
+  Trace.find(:all, :conditions => { :visible => false }, :order => "id").each do |trace|
     Signal.trap("TERM") do 
       terminated = true
     end