X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b8f3742bc39a8aa4a90f6f1bd151a0c5cdaa42ec..b76bfe379e6527c9cfc2ced97aa615f8c2c45dd7:/script/cleanup diff --git a/script/cleanup b/script/cleanup index 72a6dec9b..797193cce 100755 --- a/script/cleanup +++ b/script/cleanup @@ -2,27 +2,6 @@ require File.dirname(__FILE__) + '/../config/environment' -last_session_id = 0 - -begin - sessions = Session.find(:all, - :conditions => ["updated_at < ? and id > ?", 1.week.ago, last_session_id], - :order => :id, :limit => 1000) - - sessions.each do |session| - last_session_id = session.id - - begin - if session[:user] and User.find(session[:user]) - session.destroy if session.updated_at < 1.month.ago - else - session.destroy - end - rescue Exception => ex - puts "Invalid session #{session.session_id}: #{ex.to_s}" - session.destroy - end - end -end while sessions.length > 0 - UserToken.delete_all("expiry < NOW()") + +exit 0