about summary refs log tree commit diff
path: root/app/controllers/concerns
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-01-18 20:29:56 +0100
committerGitHub <noreply@github.com>2018-01-18 20:29:56 +0100
commit9b3b40df660d90fddb7563def4fab9b5cee701e9 (patch)
tree533d983eb41e1f454c9931ba9171ce0ddc04c96f /app/controllers/concerns
parentd799921c75e7bfb83504bb79dcc1c269c91d168c (diff)
Fix regeneration marker not expiring (#6290)
* Fix regeneration key not getting expired

* Add rake task to remove old regeneration markers
Diffstat (limited to 'app/controllers/concerns')
-rw-r--r--app/controllers/concerns/user_tracking_concern.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/user_tracking_concern.rb b/app/controllers/concerns/user_tracking_concern.rb
index 1e3132941..a2510e55f 100644
--- a/app/controllers/concerns/user_tracking_concern.rb
+++ b/app/controllers/concerns/user_tracking_concern.rb
@@ -32,7 +32,7 @@ module UserTrackingConcern
   end
 
   def regenerate_feed!
-    Redis.current.setnx("account:#{current_user.account_id}:regeneration", true) == 1 && Redis.current.expire("account:#{current_user.account_id}:regeneration", 3_600 * 24)
+    Redis.current.setnx("account:#{current_user.account_id}:regeneration", true) && Redis.current.expire("account:#{current_user.account_id}:regeneration", 1.day.seconds)
     RegenerationWorker.perform_async(current_user.account_id)
   end
 end