Commit 7dd8d379 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'rails5-deprecation-warnings-ce' into 'master'

[CE] Fix rails 5 deprecation warnings

See merge request gitlab-org/gitlab-ce!21673
parents 1254f226 1b42c847
...@@ -19,6 +19,7 @@ module Gitlab ...@@ -19,6 +19,7 @@ module Gitlab
require_dependency Rails.root.join('lib/gitlab/request_context') 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/current_settings')
require_dependency Rails.root.join('lib/gitlab/middleware/read_only') 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 # This needs to be loaded before DB connection is made
# to make sure that all connections have NO_ZERO_DATE # to make sure that all connections have NO_ZERO_DATE
...@@ -159,7 +160,7 @@ module Gitlab ...@@ -159,7 +160,7 @@ module Gitlab
# This middleware needs to precede ActiveRecord::QueryCache and other middlewares that # This middleware needs to precede ActiveRecord::QueryCache and other middlewares that
# connect to the database. # 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 config.middleware.insert_after Warden::Manager, Rack::Attack
...@@ -196,7 +197,7 @@ module Gitlab ...@@ -196,7 +197,7 @@ module Gitlab
config.cache_store = :redis_store, caching_config_hash 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 config.active_job.queue_adapter = :sidekiq
......
...@@ -21,12 +21,12 @@ Rails.application.configure do ...@@ -21,12 +21,12 @@ Rails.application.configure do
if Gitlab.rails5? if Gitlab.rails5?
config.public_file_server.enabled = true config.public_file_server.enabled = true
config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
else else
config.serve_static_files = true config.serve_static_files = true
config.static_cache_control = "public, max-age=3600"
end end
config.static_cache_control = "public, max-age=3600"
# Show full error reports and disable caching # Show full error reports and disable caching
config.consider_all_requests_local = true config.consider_all_requests_local = true
config.action_controller.perform_caching = false config.action_controller.perform_caching = false
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
# This bug was fixed in Rails 5.1 by https://github.com/rails/rails/pull/24745/commits/aa062318c451512035c10898a1af95943b1a3803 # This bug was fixed in Rails 5.1 by https://github.com/rails/rails/pull/24745/commits/aa062318c451512035c10898a1af95943b1a3803
if Gitlab.rails5? 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") if Rails.version.start_with?("5.1")
raise "Remove this monkey patch: #{__FILE__}" raise "Remove this monkey patch: #{__FILE__}"
end end
......
app = Rails.application 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 # The `ActionDispatch::Static` middleware intercepts requests for static files
# by checking if they exist in the `/public` directory. # by checking if they exist in the `/public` directory.
# We're replacing it with our `Gitlab::Middleware::Static` that does the same, # 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. # except ignoring `/uploads`, letting those go through to the GitLab Rails app.
app.config.middleware.swap( if Gitlab.rails5?
ActionDispatch::Static, app.config.middleware.swap(
Gitlab::Middleware::Static, ActionDispatch::Static,
app.paths["public"].first, Gitlab::Middleware::Static,
app.config.static_cache_control 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 # If webpack-dev-server is configured, proxy webpack's public directory
# instead of looking for static assets # instead of looking for static assets
......
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