mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
@ -49,8 +49,6 @@ Rails.application.configure do
|
||||
# Do not log asset requests
|
||||
config.assets.quiet = true
|
||||
|
||||
config.allow_concurrency = Gitlab::Runtime.multi_threaded?
|
||||
|
||||
# BetterErrors live shell (REPL) on every stack frame
|
||||
BetterErrors::Middleware.allow_ip!("127.0.0.1/0")
|
||||
|
||||
|
@ -77,6 +77,4 @@ Rails.application.configure do
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
|
||||
config.eager_load = true
|
||||
|
||||
config.allow_concurrency = Gitlab::Runtime.multi_threaded?
|
||||
end
|
||||
|
@ -54,4 +54,8 @@ Rails.application.configure do
|
||||
config.logger = ActiveSupport::TaggedLogging.new(Logger.new(nil))
|
||||
config.log_level = :fatal
|
||||
end
|
||||
|
||||
# Mount the ActionCable Engine in-app so that we don't have to spawn another Puma
|
||||
# process for feature specs
|
||||
ENV['ACTION_CABLE_IN_APP'] = 'true'
|
||||
end
|
||||
|
Reference in New Issue
Block a user