From c8eb1dccabe5cd961895127dbbbf46d3eee4aebd Mon Sep 17 00:00:00 2001 From: DJ Mountney Date: Sun, 29 May 2016 12:53:30 -0700 Subject: Try and use cache for application settings even when the db is not connected --- app/models/application_setting.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app') diff --git a/app/models/application_setting.rb b/app/models/application_setting.rb index 9a14954b4a7..33069d66d78 100644 --- a/app/models/application_setting.rb +++ b/app/models/application_setting.rb @@ -98,6 +98,10 @@ class ApplicationSetting < ActiveRecord::Base Rails.cache.delete(CACHE_KEY) end + def self.cached + Rails.cache.fetch(CACHE_KEY) + end + def self.create_from_defaults create( default_projects_limit: Settings.gitlab['default_projects_limit'], -- cgit v1.2.1