-
Notifications
You must be signed in to change notification settings - Fork 898
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MORPHY] upgrade puma 6.0 #23295
base: morphy
Are you sure you want to change the base?
[MORPHY] upgrade puma 6.0 #23295
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -916,7 +916,7 @@ GEM | |
faraday (>= 0.9, < 2.0.0) | ||
psych (3.3.2) | ||
public_suffix (4.0.6) | ||
puma (4.3.10) | ||
puma (6.5.0) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If 6.5 is out anyway, should we just change the Gemfile to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I felt that upgarding to a known (in our app) version of puma was the most prudent. |
||
nio4r (~> 2.0) | ||
qpid_proton (0.30.0) | ||
query_relation (0.1.1) | ||
|
@@ -1241,7 +1241,7 @@ DEPENDENCIES | |
pg-dsn_parser (~> 0.1.0) | ||
pg-logical_replication (~> 1.2) | ||
psych (~> 3.1) | ||
puma (~> 4.2) | ||
puma (~> 6.4) | ||
qpid_proton (~> 0.30.0) | ||
query_relation (~> 0.1.0) | ||
rack-attack (~> 6.5.0) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My only question is can you revisit the config/puma.rb and see if there were any changes in threads that might affect our current value and if there are any other settings added/changed that we might want to look at. Note, the comment there is from 3.0.0 puma.
It's fine if it's a followup PR but it's worth revisiting those when we upgrade to see if anything needs to change. For example, if the default is the same as our setting, we can probably drop
threads(5, 5)
from our configuration.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jrafanie
config/puma.rb
onmorphy
is the same as onmaster
.I did not find any changes that we would need.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this affect us setting min and max thread from configuration file?