]> git.openstreetmap.org Git - rails.git/commitdiff
Process traces in order.
authorTom Hughes <tom@compton.nu>
Mon, 24 Sep 2007 22:59:34 +0000 (22:59 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 24 Sep 2007 22:59:34 +0000 (22:59 +0000)
lib/daemons/gpx_import.rb

index 793fde94b8f54c4fe3cb5c000c53c1d72c4c0b4c..86bd2ac143a43e36eb7867bc90b7da31ffefa672 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').each do |trace|
+  Trace.find(:all, :conditions => "inserted = 0 and visible = 1", :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').each do |trace|
+  Trace.find(:all, :conditions => "visible = 0", :order => "id").each do |trace|
     Signal.trap("TERM") do 
       terminated = true
     end