Fix rails 5 deprecation warnings
Fixes rails 5 deprecation warnings in `config/` files
This commit is contained in:
parent
b21625a978
commit
1b42c847bc
|
|
@ -19,6 +19,7 @@ module Gitlab
|
|||
require_dependency Rails.root.join('lib/gitlab/request_context')
|
||||
require_dependency Rails.root.join('lib/gitlab/current_settings')
|
||||
require_dependency Rails.root.join('lib/gitlab/middleware/read_only')
|
||||
require_dependency Rails.root.join('lib/gitlab/middleware/basic_health_check')
|
||||
|
||||
# This needs to be loaded before DB connection is made
|
||||
# to make sure that all connections have NO_ZERO_DATE
|
||||
|
|
@ -159,7 +160,7 @@ module Gitlab
|
|||
|
||||
# This middleware needs to precede ActiveRecord::QueryCache and other middlewares that
|
||||
# connect to the database.
|
||||
config.middleware.insert_after "Rails::Rack::Logger", "Gitlab::Middleware::BasicHealthCheck"
|
||||
config.middleware.insert_after Rails::Rack::Logger, ::Gitlab::Middleware::BasicHealthCheck
|
||||
|
||||
config.middleware.insert_after Warden::Manager, Rack::Attack
|
||||
|
||||
|
|
@ -196,7 +197,7 @@ module Gitlab
|
|||
|
||||
config.cache_store = :redis_store, caching_config_hash
|
||||
|
||||
config.active_record.raise_in_transactional_callbacks = true
|
||||
config.active_record.raise_in_transactional_callbacks = true unless rails5?
|
||||
|
||||
config.active_job.queue_adapter = :sidekiq
|
||||
|
||||
|
|
|
|||
|
|
@ -21,12 +21,12 @@ Rails.application.configure do
|
|||
|
||||
if Gitlab.rails5?
|
||||
config.public_file_server.enabled = true
|
||||
config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
|
||||
else
|
||||
config.serve_static_files = true
|
||||
config.static_cache_control = "public, max-age=3600"
|
||||
end
|
||||
|
||||
config.static_cache_control = "public, max-age=3600"
|
||||
|
||||
# Show full error reports and disable caching
|
||||
config.consider_all_requests_local = true
|
||||
config.action_controller.perform_caching = false
|
||||
|
|
|
|||
|
|
@ -21,8 +21,6 @@
|
|||
# This bug was fixed in Rails 5.1 by https://github.com/rails/rails/pull/24745/commits/aa062318c451512035c10898a1af95943b1a3803
|
||||
|
||||
if Gitlab.rails5?
|
||||
ActiveSupport::Deprecation.warn("#{__FILE__} is a monkey patch which must be removed when upgrading to Rails 5.1")
|
||||
|
||||
if Rails.version.start_with?("5.1")
|
||||
raise "Remove this monkey patch: #{__FILE__}"
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,17 +1,26 @@
|
|||
app = Rails.application
|
||||
|
||||
if app.config.serve_static_files
|
||||
if (Gitlab.rails5? && app.config.public_file_server.enabled) || app.config.serve_static_files
|
||||
# The `ActionDispatch::Static` middleware intercepts requests for static files
|
||||
# by checking if they exist in the `/public` directory.
|
||||
# We're replacing it with our `Gitlab::Middleware::Static` that does the same,
|
||||
# except ignoring `/uploads`, letting those go through to the GitLab Rails app.
|
||||
|
||||
app.config.middleware.swap(
|
||||
ActionDispatch::Static,
|
||||
Gitlab::Middleware::Static,
|
||||
app.paths["public"].first,
|
||||
app.config.static_cache_control
|
||||
)
|
||||
if Gitlab.rails5?
|
||||
app.config.middleware.swap(
|
||||
ActionDispatch::Static,
|
||||
Gitlab::Middleware::Static,
|
||||
app.paths["public"].first,
|
||||
headers: app.config.public_file_server.headers
|
||||
)
|
||||
else
|
||||
app.config.middleware.swap(
|
||||
ActionDispatch::Static,
|
||||
Gitlab::Middleware::Static,
|
||||
app.paths["public"].first,
|
||||
app.config.static_cache_control
|
||||
)
|
||||
end
|
||||
|
||||
# If webpack-dev-server is configured, proxy webpack's public directory
|
||||
# instead of looking for static assets
|
||||
|
|
|
|||
Loading…
Reference in New Issue