Browse Source

Fix stats expiring too quickly because of variable mistake (#6155)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
1419f656e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/lib/activity_tracker.rb

+ 1
- 1
app/lib/activity_tracker.rb View File

@ -15,7 +15,7 @@ class ActivityTracker
key = [prefix, current_week].join(':')
redis.pfadd(key, value)
redis.expire(key, value)
redis.expire(key, EXPIRE_AFTER)
end
private

Loading…
Cancel
Save