summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-10-04 15:32:02 -0700
committerRémy Coutable <remy@rymai.me>2017-04-14 15:20:55 +0200
commitbca368990acdb86acf251382c191fa9b7627837a (patch)
treea3718b38143ca1ddc2ccb8241a4696989a08f1fc /lib
parentc53afeda0c2ee0cda89c235c9e8799baa1cfdc1a (diff)
downloadgitlab-ce-bca368990acdb86acf251382c191fa9b7627837a.tar.gz
Cache the last usage data to avoid unicorn timeouts
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/usage_data.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/usage_data.rb b/lib/gitlab/usage_data.rb
index 46875908fa3..02750fa02e6 100644
--- a/lib/gitlab/usage_data.rb
+++ b/lib/gitlab/usage_data.rb
@@ -3,16 +3,16 @@ module Gitlab
include Gitlab::CurrentSettings
class << self
- def data
- Rails.cache.fetch('usage_data', expires_in: 1.hour) { uncached_data }
+ def data(force_refresh = false)
+ Rails.cache.fetch('usage_data', force: force_refresh) { uncached_data }
end
def uncached_data
license_usage_data.merge(system_usage_data)
end
- def to_json
- data.to_json
+ def to_json(force_refresh = false)
+ data(force_refresh).to_json
end
def system_usage_data