Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
b6cde185
Commit
b6cde185
authored
Nov 05, 2018
by
Andrew Newdigate
Committed by
Stan Hu
Nov 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow concurrency when using Puma
parent
001cb5aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
changelogs/unreleased/53362-allow-concurrency-in-puma.yml
changelogs/unreleased/53362-allow-concurrency-in-puma.yml
+5
-0
config/environments/development.rb
config/environments/development.rb
+2
-0
config/environments/production.rb
config/environments/production.rb
+1
-1
No files found.
changelogs/unreleased/53362-allow-concurrency-in-puma.yml
0 → 100644
View file @
b6cde185
---
title
:
Allow Rails concurrency when running in Puma
merge_request
:
22751
author
:
type
:
performance
config/environments/development.rb
View file @
b6cde185
...
...
@@ -45,4 +45,6 @@ Rails.application.configure do
# Do not log asset requests
config
.
assets
.
quiet
=
true
config
.
allow_concurrency
=
defined?
(
::
Puma
)
end
config/environments/production.rb
View file @
b6cde185
...
...
@@ -83,5 +83,5 @@ Rails.application.configure do
config
.
eager_load
=
true
config
.
allow_concurrency
=
false
config
.
allow_concurrency
=
defined?
(
::
Puma
)
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment