Skip to content

Commit

Permalink
Merge pull request #395 from epimorphics/task/release-v1.7.3
Browse files Browse the repository at this point in the history
Release v1.7.3
  • Loading branch information
jonrandahl committed Apr 3, 2024
2 parents d05b412 + 1192ab2 commit 63d727c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## unreleased

## 1.7.3 - 2024-03-15

- (Jon) Updated puma.rb configuration to accept both `RAILS_MIN_THREADS` and
`RAILS_MAX_THREADS` environment variables to allow a more flexible configuration
for the application to run in different environments.
[GH-143](https://github.com/epimorphics/hmlr-linked-data/issues/143)
- (Jon) Updated the UKHPI contact form links to point to the new contact form
page; both the English and Welsh versions
[GH-135](https://github.com/epimorphics/hmlr-linked-data/issues/135)
Expand Down
2 changes: 1 addition & 1 deletion app/lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Version
MAJOR = 1
MINOR = 7
PATCH = 2
PATCH = 3
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}"
end
5 changes: 3 additions & 2 deletions config/puma.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum, this matches the default thread size of Active Record.
#
threads_count = ENV.fetch('RAILS_MAX_THREADS', 5).to_i
threads threads_count, threads_count
max_threads_count = ENV.fetch('RAILS_MAX_THREADS', 5)
min_threads_count = ENV.fetch('RAILS_MIN_THREADS', max_threads_count)
threads min_threads_count, max_threads_count

# Specifies the `port` that Puma will listen on to receive requests, default is 3000.
#
Expand Down

0 comments on commit 63d727c

Please sign in to comment.