diff options
author | Stan Hu <stanhu@gmail.com> | 2017-06-20 23:26:02 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2017-06-20 23:27:31 -0700 |
commit | 03e538b7210dabb01a1e8dc225d6e364e277a7a0 (patch) | |
tree | f65f58a6e42df07918c6583601de860d3cdf74af /lib | |
parent | b2e1d32e7a74b22b23e8ab052bd29e15bb8a4f1e (diff) | |
download | gitlab-ce-03e538b7210dabb01a1e8dc225d6e364e277a7a0.tar.gz |
Change references from ApplicationSetting to ::ApplicationSetting to make autoload happiersh-current-settings-autoload-fix
Closes #34047
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/current_settings.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gitlab/current_settings.rb b/lib/gitlab/current_settings.rb index 284e6ad55a5..818b3d9c46b 100644 --- a/lib/gitlab/current_settings.rb +++ b/lib/gitlab/current_settings.rb @@ -10,7 +10,7 @@ module Gitlab delegate :sidekiq_throttling_enabled?, to: :current_application_settings - def fake_application_settings(defaults = ApplicationSetting.defaults) + def fake_application_settings(defaults = ::ApplicationSetting.defaults) FakeApplicationSettings.new(defaults) end @@ -24,7 +24,7 @@ module Gitlab def cached_application_settings begin - ApplicationSetting.cached + ::ApplicationSetting.cached rescue ::Redis::BaseError, ::Errno::ENOENT # In case Redis isn't running or the Redis UNIX socket file is not available end @@ -35,7 +35,7 @@ module Gitlab # This loads from the database into the cache, so handle Redis errors begin - db_settings = ApplicationSetting.current + db_settings = ::ApplicationSetting.current rescue ::Redis::BaseError, ::Errno::ENOENT # In case Redis isn't running or the Redis UNIX socket file is not available end @@ -45,14 +45,14 @@ module Gitlab # and other callers from failing, use any loaded settings and return # defaults for missing columns. if ActiveRecord::Migrator.needs_migration? - defaults = ApplicationSetting.defaults + defaults = ::ApplicationSetting.defaults defaults.merge!(db_settings.attributes.symbolize_keys) if db_settings.present? return fake_application_settings(defaults) end return db_settings if db_settings.present? - ApplicationSetting.create_from_defaults || in_memory_application_settings + ::ApplicationSetting.create_from_defaults || in_memory_application_settings end def in_memory_application_settings |