Commit 7e55a227 authored by Bob Van Landuyt's avatar Bob Van Landuyt

Revert "Merge branch 'use_gitlab_current_settings' into 'master'"

This reverts merge request !25370
parent 61b606a8
...@@ -93,6 +93,6 @@ class UrlValidator < ActiveModel::EachValidator ...@@ -93,6 +93,6 @@ class UrlValidator < ActiveModel::EachValidator
end end
def allow_setting_local_requests? def allow_setting_local_requests?
Gitlab::CurrentSettings.allow_local_requests_from_hooks_and_services? ApplicationSetting.current&.allow_local_requests_from_hooks_and_services?
end end
end end
...@@ -14,8 +14,9 @@ describe Gitlab::CurrentSettings do ...@@ -14,8 +14,9 @@ describe Gitlab::CurrentSettings do
describe '#current_application_settings', :use_clean_rails_memory_store_caching do describe '#current_application_settings', :use_clean_rails_memory_store_caching do
it 'allows keys to be called directly' do it 'allows keys to be called directly' do
db_settings = ApplicationSetting.first || create(:application_setting) db_settings = create(:application_setting,
db_settings.update!(home_page_url: 'http://mydomain.com', signup_enabled: false) home_page_url: 'http://mydomain.com',
signup_enabled: false)
expect(described_class.home_page_url).to eq(db_settings.home_page_url) expect(described_class.home_page_url).to eq(db_settings.home_page_url)
expect(described_class.signup_enabled?).to be_falsey expect(described_class.signup_enabled?).to be_falsey
...@@ -108,7 +109,7 @@ describe Gitlab::CurrentSettings do ...@@ -108,7 +109,7 @@ describe Gitlab::CurrentSettings do
context 'with pending migrations' do context 'with pending migrations' do
before do before do
allow(ActiveRecord::Migrator).to receive(:needs_migration?).and_return(true) expect(ActiveRecord::Migrator).to receive(:needs_migration?).and_return(true)
end end
shared_examples 'a non-persisted ApplicationSetting object' do shared_examples 'a non-persisted ApplicationSetting object' do
......
...@@ -46,7 +46,9 @@ describe LfsDownloadObject do ...@@ -46,7 +46,9 @@ describe LfsDownloadObject do
subject { described_class.new(oid: oid, size: size, link: 'http://192.168.1.1') } subject { described_class.new(oid: oid, size: size, link: 'http://192.168.1.1') }
before do before do
stub_application_setting(allow_local_requests_from_hooks_and_services: setting) allow(ApplicationSetting)
.to receive(:current)
.and_return(ApplicationSetting.build_from_defaults(allow_local_requests_from_hooks_and_services: setting))
end end
context 'are allowed' do context 'are allowed' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment