changes to tag sub processing

This commit is contained in:
albert
2013-03-02 23:52:07 -05:00
parent d6af03a7b6
commit b55d40e70a
2 changed files with 2 additions and 1 deletions

View File

@@ -131,6 +131,7 @@ class TagSubscription < ActiveRecord::Base
begin
tag_subscription.process
tag_subscription.save
sleep 0
rescue Exception => x
raise if Rails.env != "production"
end

View File

@@ -1,6 +1,6 @@
set :output, "/var/log/whenever.log"
every 1.hour do
every 4.hours do
runner "TagSubscription.process_all"
end