Commit c6d4449f authored by Stan Hu's avatar Stan Hu

Merge branch '53362-allow-concurrency-in-puma' into 'master'

Allow concurrency when using Puma

Closes #53362

See merge request gitlab-org/gitlab-ce!22751
parents 001cb5aa b6cde185
---
title: Allow Rails concurrency when running in Puma
merge_request: 22751
author:
type: performance
......@@ -45,4 +45,6 @@ Rails.application.configure do
# Do not log asset requests
config.assets.quiet = true
config.allow_concurrency = defined?(::Puma)
end
......@@ -83,5 +83,5 @@ Rails.application.configure do
config.eager_load = true
config.allow_concurrency = false
config.allow_concurrency = defined?(::Puma)
end
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